-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gh-10333 move HttpSecurityDsl to another package #10429
Conversation
AspectJ doesn't support JDK17 language level (yet). For the time being, this commit is downgrading the language level for the aspectJ generated classes to 1.8. Issue spring-projectsgh-10349
The dependency is not needed anymore and there is a issue when using OpenJDK 13 or higher reactor/BlockHound#33 Issue spring-projectsgh-10343
AspectJ doesn't support JDK17 language level (yet). For the time being, this commit is downgrading the language level for the aspectJ generated classes to 1.8. Issue spring-projectsgh-10349
The dependency is not needed anymore and there is a issue when using OpenJDK 13 or higher reactor/BlockHound#33 Issue spring-projectsgh-10343
Copy the code from the library and change it to support the Jakarta classes Issue spring-projectsgh-10360
…springframework.security.config.web.servlet to org.springframework.security.config.annotation.web.configurers spring-projectsgh-10333 ref(annotation): cleanup imports spring-projectsgh-10333 ref(annotation): fix imports
…amework.security.config.web.servlet to org.springframework.security.config.annotation.web.configurers
# Conflicts: # cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/CsrfDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/FormLoginDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/HttpBasicDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/HttpSecurityDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/LogoutDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/OAuth2LoginDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/OAuth2ResourceServerDsl.kt # config/src/main/kotlin/org/springframework/security/config/annotation/web/configurers/X509Dsl.kt # config/src/test/java/org/springframework/security/config/annotation/web/builders/HttpConfigurationTests.java # config/src/test/kotlin/org/springframework/security/config/annotation/web/configurers/RememberMeDslTests.kt # dependencies/spring-security-dependencies.gradle # gradle.properties # web/src/main/java/org/springframework/security/web/FilterInvocation.java
d7be5da
to
d240d73
Compare
Hi, @nor-ek. It looks like we may merge |
d240d73
to
caf4c47
Compare
Hi, @nor-ek. Also, regarding your question about packages, you can confirm this by doing the following command:
The result will contain a line like this:
The |
According to gh-1033 issue I've moved files from
org.springframework.security.config.web.servlet
toorg.springframework.security.config.annotation.web.configurers
insrc/main/kotlin
.Firstly files used to be moved to
org.springframework.security.config.annotation.web
but I've noticed that insrc/main/java
similar files are in.configurers
the subpackage.