Spring security permitAll()不起作用

时间:2015-08-16 23:21:51

标签: spring spring-security

<dependency>
  <groupId>org.springframework.security.oauth</groupId>
  <artifactId>spring-security-oauth2</artifactId>
  <version>2.0.5.RELEASE</version>
</dependency>

我创建了一个纯粹被切断为资源服务器的spring-boot应用程序。

@Configuration
@EnableResourceServer
public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().permitAll();
    }

}

在我的配置类中,我做了以上操作(允许所有内容,仅用于实验目的)。但是,似乎所有来到此服务器的请求都有401个未经授权的错误。 PermitAll()似乎不起作用。

我在这里错过了什么吗?

感谢。

0 个答案:

没有答案