-
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
Minor docs fix #15043
Minor docs fix #15043
Conversation
@vvaadd Please sign the Contributor License Agreement! Click here to manually synchronize the status of this Pull Request. See the FAQ for frequently asked questions. |
@vvaadd Thank you for signing the Contributor License Agreement! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @vvaadd, thanks for the PR.
I've left some feedback inline.
} | ||
|
||
@Bean | ||
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { | ||
http | ||
// ... | ||
.exceptionHandling(e -> e.authenticationEntryPoint(authenticationEntryPoint())) | ||
.addFilterBefore(digestFilter()); | ||
.addFilterAfter(digestAuthenticationFilter(), ExceptionTranslationFilter.class); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method should be .addFilter(digestAuthenticationFilter())
since the DigestAuthenticationFilter
has an entry in FilterOrderRegistration
.
Thanks @vvaadd, this is now merged into |
Changed method names and arguments in reference docs