将 WebSecurityConfigurerAdapter 与 Spring OAuth2 和 user-info-uri 结合使用

Using WebSecurityConfigurerAdapter with Spring OAuth2 and user-info-uri

我创建了一个授权服务如下

@SpringBootApplication
@EnableAuthorizationServer
public class AuthorizationApplication {
   ...
}

有了这个application.properties.

server.port=9000
security.oauth2.client.client-id=monederobingo
security.oauth2.client.client-secret=monederobingosecret
security.oauth2.client.authorized-grant-types=authorization_code,refresh_token,password,client_credentials
security.oauth2.client.scope=company,client

然后,在一个单独的 spring 引导项目中,我创建了一个资源服务器。

@SpringBootApplication
@EnableResourceServer
public class App {
   ...
}

有了这个application.properties.

server.port=9090
spring.application.name=app
security.oauth2.resource.user-info-uri=http://localhost:9000/user

现在,如果我使用授权服务检索到的适当令牌发送这样的请求 localhost:9090/api,一切正常。

但是,我不想在向 localhost:9090/login 发送请求时发送此令牌。

为此,我在我的资源服务器 spring 启动应用程序中创建了这个 class。

@Configuration
public class SpringConfig extends WebSecurityConfigurerAdapter {
    @Override protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable()
                .authorizeRequests()
                .antMatchers("/login")
                .permitAll()
                .antMatchers("/api/**")
                .authenticated();
    }

}

现在我不需要发送任何令牌来向 /login 发送请求。

但是,当使用有效令牌向 /api 发送请求时,我现在收到以下消息。

{
  "timestamp": 1496027102659,
  "status": 403,
  "error": "Forbidden",
  "message": "Access Denied",
  "path": "/api/v1/points_configuration/314"
}

如何在 Spring Security OAuth2 中为少数 URL 模式配置安全性?

请关注此以获取有关 Spring OAuth 安全性的更多信息:Secure Spring REST Api with OAuth

为了在 Spring 启动时实施 OAuth 安全,您必须通过分别从 AuthorizationServerConfigurerAdapterResourceServerConfigurerAdapter 扩展它们来创建授权和资源服务器。

授权服务器

    @Configuration
    @EnableAuthorizationServer
    public class AuthorizationApplication extends AuthorizationServerConfigurerAdapter{

    @Autowired
    private UserDetailsService userDetailsService;
    @Autowired
    private AuthenticationManager authenticationManager;

    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints)
                throws Exception {
            endpoints
                    .userDetailsService(userDetailsService)
                    .authenticationManager(this.authenticationManager).tokenStore(tokenStore()).approvalStoreDisabled();
        }

       @Override
        public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
            clients.withClientDetails(mongoClientDetailsService);
            /*inMemory()
                    .withClient(propertyResolver.getProperty(PROP_CLIENTID))
                    .scopes("read", "write")
                    .authorities("ROLE_CLIENT")
                    .authorizedGrantTypes("password", "refresh_token","client_credentials")
                    .secret(propertyResolver.getProperty(PROP_SECRET))
                    .accessTokenValiditySeconds(propertyResolver.getProperty(PROP_TOKEN_VALIDITY_SECONDS, Integer.class, 18000));*/
        }

//Do others stuff
    }

资源服务器

您要使用 OAuth 保护的所有 Url 都应在此服务器配置中提及。它启用 Spring 安全过滤器,使用传入的 OAuth2 令牌对请求进行身份验证。虽然大多数 WebSecurityConfigurerAdapter 扩展 class 用于基本安全配置,例如添加过滤器、允许不安全 url 或实施会话策略等

@Configuration
@EnableResourceServer
public class App extends ResourceServerConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
    http.requestMatchers().antMatchers("/api/**").and().authorizeRequests()
                .antMatchers("/api/**").authenticated();
}
  //Do others stuff
}