gpt4 book ai didi

Spring OAuth2 Redis 客户端详细信息

转载 作者:IT王子 更新时间:2023-10-29 06:05:13 25 4
gpt4 key购买 nike

我有一个 oauth2 的工作示例,剩下的就是对客户端和资源所有者的内存中身份验证和授权。

我想使用 Redis,但对如何设置它有点困惑。

如何调整我下面的代码,以便能够在 Redis 中持久保存数据(例如 token 、refresh_token 和其他客户端详细信息)

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfiguration extends AuthorizationServerConfigurerAdapter {

@Value("${spring.oauth2.realm.id}")
private String REALM;

@Autowired
private TokenStore tokenStore;

@Autowired
private UserApprovalHandler userApprovalHandler;

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

@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.inMemory()
.withClient("client001")
.authorizedGrantTypes("client_credentials", "password")
.authorities("ROLE_ADMIN", "ROLE_TRUSTED_CLIENT")
.scopes("read", "write", "trust")
.secret("secret")
.accessTokenValiditySeconds(120)
.refreshTokenValiditySeconds(600);
}

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

@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
oauthServer.realm(REALM + "/client");
}

}

[更新]

我能够利用 RedisTokenStore 将 token 存储到 Redis。为此,请在您的 OAuth2SecurityConfiguration 中替换以下行:

@Bean
public TokenStore tokenStore() {
return new InMemoryTokenStore();
}

与...

@Bean
public TokenStore tokenStore(final RedisConnectionFactory factory) {
return new RedisTokenStore(factory);
}

现在在 AuthorizationServerConfiguration#configure(final ClientDetailsS​​erviceConfigurer clients); 中遇到了一个新问题。是否支持 redis

@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.inMemory()
.withClient("client001")
.secret("secret")
.authorizedGrantTypes("client_credentials", "password")
.authorities("ROLE_ADMIN", "ROLE_TRUSTED_CLIENT")
.scopes("read", "write", "trust")
.accessTokenValiditySeconds(60)
.refreshTokenValiditySeconds(120);
}

当我查看 ClientDetailsS​​erviceConfigurer 时,它仅支持 inMemory()jdbc()。我打算使用 withClientDetails() 来支持 redis。是否有 RedisClientDetailsS​​ervice 或类似的东西?

非常感谢对其实现的任何意见和建议。

最佳答案

我能够将客户端详细信息存储到 Redis。

这些是我做的步骤:

  1. 创建以下类:

    • RedisClientDetailsS​​erviceBuilder.java
    • RedisClientDetailsS​​ervice.java

RedisClientDetailsS​​ervice

public class RedisClientDetailsService implements ClientDetailsService {

private PasswordEncoder passwordEncoder = NoOpPasswordEncoder.getInstance();

private Map<String, ClientDetails> clientDetailsStore = new HashMap<String, ClientDetails>();

public ClientDetails loadClientByClientId(final String clientId) throws ClientRegistrationException {
final ClientDetails details = clientDetailsStore.get(clientId);
if (details == null) {
throw new NoSuchClientException("No client with requested id: " + clientId);
}
return details;
}

public void setClientDetailsStore(final Map<String, ? extends ClientDetails> clientDetailsStore) {
this.clientDetailsStore = new HashMap<String, ClientDetails>(clientDetailsStore);
}

/**
* @param passwordEncoder the password encoder to set
*/
public void setPasswordEncoder(final PasswordEncoder passwordEncoder) {
this.passwordEncoder = passwordEncoder;
}
}

RedisClientDetailsS​​erviceBuilder

public class RedisClientDetailsServiceBuilder extends ClientDetailsServiceBuilder<RedisClientDetailsServiceBuilder> {

private Map<String, ClientDetails> clientDetails = new HashMap<String, ClientDetails>();

private PasswordEncoder passwordEncoder; // for writing client secrets

public RedisClientDetailsServiceBuilder passwordEncoder(PasswordEncoder passwordEncoder) {
this.passwordEncoder = passwordEncoder;
return this;
}

@Override
protected void addClient(
final String clientId,
final ClientDetails build) {

clientDetails.put(clientId, build);
}

@Override
protected ClientDetailsService performBuild() {
final RedisClientDetailsService redisClientDetailsService = new RedisClientDetailsService();
if (passwordEncoder != null) {
// This is used to encode secrets as they are added to the database (if it isn't set then the user has top
// pass in pre-encoded secrets)
redisClientDetailsService.setPasswordEncoder(passwordEncoder);
}

redisClientDetailsService.setClientDetailsStore(clientDetails);
return redisClientDetailsService;
}

}

  1. 然后在 AuthorizationServerConfiguration#configure() 上,使用我们制作的构建器设置客户端构建器。

@Override
public void configure(final ClientDetailsServiceConfigurer clients) throws Exception {
final RedisClientDetailsServiceBuilder builder = new RedisClientDetailsServiceBuilder();
clients.setBuilder(builder);

// @formatter:off
builder.withClient("client001")
.secret("secret")
.authorizedGrantTypes("client_credentials", "password")
.authorities("ROLE_ADMIN", "ROLE_TRUSTED_CLIENT")
.scopes("read", "write", "trust")
.accessTokenValiditySeconds(120)
.refreshTokenValiditySeconds(400)
// @formatter:on
}

关于Spring OAuth2 Redis 客户端详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42775964/

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