-
Notifications
You must be signed in to change notification settings - Fork 73
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
Use Spring Boot 2.7 and Spring Security without WebSecurityConfigurerAdapter #106
Comments
Let me see what I can do :) |
That would be awesome ! Thanks for your time and consideration. |
Any update on this, While we are migrating to spring 3.X versions also getting same issue. If any update without using WebSecurityConfigurerAdapter which is depricated and removed from spring versions 3.x. |
Been looking at this. But it looks Spring Security 6 already has native support for SAML, so you probably don't need this plugin anymore. |
So we can not use the ulisesbocchio / spring-boot-security-saml from spring 3.x onward ? |
Hello,
would it be possible to update this (excellent!) library to be able to work with recent Spring Boot & Spring Security libraries?
With Spring Boot 2.7 (Spring Security 5.7) the old way of configuring Spring Security with is
WebSecurityConfigurerAdapter
deprecated : Spring Blog post.When trying to use the library with the
SecurityFilterChain
security config, I stumbled on problems like:SAMLServiceProviderSecurityConfiguration
is not loaded at the time theendpointsMatcher()
method is called in the security configAuthenticationManager
fromAuthenticationConfiguration
to add it as a@Bean
works, but after login results in a StackOverflow errorsThank you.
The text was updated successfully, but these errors were encountered: