在同一个springboot应用程序上实现http basic和forms login

时间:2015-11-05 22:46:08

标签: authentication spring-boot

我想为路径'/ api /'实现http基本身份验证,并为springboot应用程序的路径'/'和'/ admin'构建身份验证。

这是我目前的java配置代码,但它不起作用,有什么想法吗? =) 此代码使所有站点都使用http basic保护,而不仅仅是'/ api'。我在stackoverflow中发现了一些问题,但它们似乎无法解决我的问题:

public class ApplicationSecurity extends WebSecurityConfigurerAdapter {

    @Autowired
    private DataSource datasource;

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
                .antMatchers("/api/**").authenticated().and()
                .httpBasic();
        http.authorizeRequests()
                .antMatchers("/**").authenticated()
                .antMatchers("/admin/**").hasRole("ADMIN")
                .and()
                .formLogin().loginPage("/login").permitAll()
                .defaultSuccessUrl("/inicio");
        http.logout().permitAll();

        http.csrf().disable();
    }

    http.csrf().disable();
}
...

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题,不得不拆分基本身份验证和表单身份验证。

@Configuration
@EnableWebSecurity
public class FormSecurityConfig extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {

    http.authorizeRequests() //
            .antMatchers("/**").authenticated() //
            .antMatchers("/admin/**").hasRole("ADMIN") //
            .and() //
            .formLogin().loginPage("/login").defaultSuccessUrl("/inicio").permitAll() //
            .and() //
            .logout();
    }
}

@Configuration
@Order(Ordered.HIGHEST_PRECEDENCE)
public class BasicSecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable();
        http.antMatcher("/api/**") //
            .authorizeRequests().anyRequest().authenticated() //
            .and() //
            .httpBasic();
    }
}

http://docs.spring.io/spring-security/site/docs/current/reference/html/jc.html#multiple-httpsecurity