基于Java的配置,以启用Spring安全匿名访问

Dee*_*wal 6 java spring spring-mvc spring-security

我想启用"ROLE_ANONYMOUS"来允许匿名访问我的应用中的某些网址.我使用了以下配置.

@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .requestCache()
            .requestCache(new NullRequestCache()).and()
        .anonymous().authorities("ROLE_ANONYMOUS").and()
        .exceptionHandling().and()
        .servletApi().and()
        .headers().cacheControl().and()
        .authorizeRequests()
            .antMatchers("/").permitAll()
            .antMatchers("/profile/image").permitAll()
            .antMatchers("/favicon.ico").permitAll()
            .antMatchers("/resources/**").permitAll()

            //.antMatchers(HttpMethod.GET, "/login/**").permitAll()
            //.antMatchers(HttpMethod.GET, "/location/**").permitAll()

            .anyRequest().authenticated()/*.and()
            .apply(new SpringSocialConfigurer())*/;

        // custom Token based authentication based on the header previously given to the client
        //.addFilterBefore(new StatelessAuthenticationFilter(tokenAuthenticationService), UsernamePasswordAuthenticationFilter.class);
}
Run Code Online (Sandbox Code Playgroud)

我的控制器看起来像:

@RestController
@RequestMapping(value="/login", produces="application/json")
public class LoginController {


    @Secured( value={"ROLE_ANONYMOUS"})
    @RequestMapping(method=RequestMethod.GET)
    public String get(){
        return "hello";
    }
}
Run Code Online (Sandbox Code Playgroud)

但是当我尝试点击"/ login"时,我得到了403拒绝访问错误.请帮助我如何启用基于匿名访问的注释.

Far*_*ook 2

这应该可以解决你的问题。

@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        ...
        .formLogin().loginPage("/login").permitAll()
        ...
Run Code Online (Sandbox Code Playgroud)

但是,如果您不想使用 PermitAll 而是坚持使用匿名角色用户(这对两种情况都有相同的效果,但如果这是您喜欢的),那么请在控制器中尝试此操作。

@Secured("ROLE_ANONYMOUS")
@RequestMapping(method=RequestMethod.GET)
public String get(){
    ...
Run Code Online (Sandbox Code Playgroud)