gpt4 book ai didi

java - 将 WebSecurityConfigurerAdapter 与 Spring OAuth2 和 user-info-uri 一起使用

转载 作者:行者123 更新时间:2023-12-04 12:56:41 25 4
gpt4 key购买 nike

我已经创建了如下的授权服务

@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 boot 项目中,我创建了一个资源服务器。

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

有了这个application.properties

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

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

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

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

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

}

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

但是,当使用有效 token 向 /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 boot 中实现 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 Security 过滤器,该过滤器使用传入的 OAuth2 token 对请求进行身份验证。虽然大多数 WebSecurityConfigurerAdapter 扩展类用于基本的安全配置,例如添加过滤器、允许不安全的 url 或实现 session 策略等。

@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
}

关于java - 将 WebSecurityConfigurerAdapter 与 Spring OAuth2 和 user-info-uri 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44234159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com