We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Allow spring security for reactive apps to be configured using a nested buider, taking advantage of Java 8 lambdas.
An example configuration would look like this:
http .authorizeExchange(exchanges -> exchanges .anyExchange().authenticated() ) .formLogin(formLogin -> formLogin .loginPage("/custom-login") ) .redirectToHttps(redirectToHttps -> redirectToHttps .httpsRedirectWhen(new PathPatternParserServerWebExchangeMatcher("/secure")) );
Relates to gh-5557.
The text was updated successfully, but these errors were encountered:
Support nested builder in DSL for reactive apps
a0f4fff
Fixes: spring-projectsgh-7107
a288ce4
Fixes: gh-7107
8cf4df1
eleftherias
Successfully merging a pull request may close this issue.
Allow spring security for reactive apps to be configured using a nested buider, taking advantage of Java 8 lambdas.
An example configuration would look like this:
Relates to gh-5557.
The text was updated successfully, but these errors were encountered: