gpt4 book ai didi

java - 正确配置spring security oauth2

转载 作者:行者123 更新时间:2023-12-02 11:20:18 26 4
gpt4 key购买 nike

我正在尝试使用 spring-security-oauth2 和 jwt 配置授权服务器。

我的主要:

@SpringBootApplication
@EnableResourceServer
public class Application {

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

我的安全配置:

@Configuration
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {

@Override
@Bean
public AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean();
}

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

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("john").password("123").roles("USER").authorities("FOO_READ");
}
}

我的身份验证服务器配置:

@Configuration
@EnableAuthorizationServer
public class AuthServerConfig extends AuthorizationServerConfigurerAdapter {

@Autowired
@Qualifier("authenticationManagerBean")
private AuthenticationManager authenticationManager;

@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.inMemory()
.withClient("gateway")
.secret("secret")
.authorizedGrantTypes("refresh_token", "password")
.scopes("GATEWAY")
.autoApprove(true) ;
}

@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
endpoints.tokenEnhancer(jwtTokenEnhancer()).authenticationManager(authenticationManager);
}

}

以及访问当前用户的网络服务:

@RestController
public class UserController {

@GetMapping("/users/me")
public Principal user(Principal principal) {
return principal;
}
}

现在,如果我执行这样的发布请求:

gateway:secret@localhost:10101/oauth/token
grant_type : password
username : john
password : 123

我的回复如下:

{
"access_token": "...access token...",
"token_type": "bearer",
"refresh_token": "...refresh token...",
"expires_in": 43199,
"scope": "GATEWAY",
"jti": "...jti..."
}

如果我使用访问 token 来调用我的用户 WS:

GET localhost:10101/users/me
Authorization : Bearer ...access token...

我得到一个空响应。

但是如果我的安全配置中有这行:

    @Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatchers().antMatchers("/wtf");
}

然后我会得到适当的响应。

有人可以解释一下这是如何工作的吗?为什么没有这行附加行就无法识别我的用户?

谢谢。

最佳答案

实际上这是Spring Security的问题。解决方案在此线程中:

https://github.com/spring-projects/spring-security-oauth/issues/980

为了正确调用Adapter,需要添加这个注解:

@Configuration 
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {
// ...
}

另一个解决方案是实现 ResourceServerConfigurerAdapter 而不是 WebSecurityConfigurerAdapter。

关于java - 正确配置spring security oauth2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49970346/

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