我们为OAuth2授权服务器编写了一个自定义ClientDetailsService:
public class MyClientDetailsService implements ClientDetailsService {
@Override
public ClientDetails loadClientByClientId(String clientId) {
log.info("Got called!");
...
}
}
日志如下:
... Got called!
... Got called!
... Got called!
... Got called!
... Got called!
... Got called!
依赖性:
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.1.11.RELEASE</version>
</dependency>
在官方的git-hub中,已经讨论了该主题,但是直到今天仍未解决。 (https://github.com/spring-projects/spring-security-oauth/issues/141)
我的问题是,有人知道该问题的解决方法吗?我们每次调用都会访问我们的数据库,这非常消耗内存。
答案 0 :(得分:1)
您需要使用spring-boot2提供的缓存。
请通过以下方式在springboot中启用缓存: @EnableCaching
@SpringBootApplication
@EnableCaching
class Starter {
public static void main(String[] args) {
SpringApplication.run(Starter.class, args);
}
}
然后缓存loadClientByClientId 通过使用 @Cacheable 。
public class MyClientDetailsService implements ClientDetailsService {
@Override
@Cacheable("ClientDetails")
public ClientDetails loadClientByClientId(String clientId) {
log.info("Got called!");
...
}
}