Skip to content
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

HttpSecurity http.authorizeRequests() is depracated #14

Open
kangourouNomade opened this issue Dec 31, 2022 · 1 comment
Open

HttpSecurity http.authorizeRequests() is depracated #14

kangourouNomade opened this issue Dec 31, 2022 · 1 comment

Comments

@kangourouNomade
Copy link

@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();
}

@HeyHiHello
Copy link

HeyHiHello commented Dec 22, 2023

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();
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants