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
@bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .authorizeRequests() - deprecated .mvcMatchers("/design", "/orders").hasRole("USER") .anyRequest().permitAll() }
looks like nowadays it should be:
@bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .authorizeHttpRequests() .requestMatchers("/design", "/orders").hasRole("USER") .requestMatchers("/", "/**").permitAll() .and() .build(); }
The text was updated successfully, but these errors were encountered:
The following works for me
@Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .authorizeHttpRequests(auth->{ auth .requestMatchers("/design", "/orders").hasRole("USER") .requestMatchers("/", "/**").permitAll();}) // .formLogin(loginConf->{ // loginConf // .loginPage("/login") // .loginProcessingUrl("/login") // .usernameParameter("username") // .passwordParameter("password") // .defaultSuccessUrl("/design");}) .formLogin(loginConf-> {}) .csrf(csrfConf->{ csrfConf.ignoringRequestMatchers("/h2-console/**"); }) .headers(headersConf -> headersConf .frameOptions(HeadersConfigurer.FrameOptionsConfig::disable)) .build(); }
Sorry, something went wrong.
No branches or pull requests
@bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
return http
.authorizeRequests() - deprecated
.mvcMatchers("/design", "/orders").hasRole("USER")
.anyRequest().permitAll()
}
looks like nowadays it should be:
@bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
return http
.authorizeHttpRequests()
.requestMatchers("/design", "/orders").hasRole("USER")
.requestMatchers("/", "/**").permitAll()
.and()
.build();
}
The text was updated successfully, but these errors were encountered: