详解Spring Boot Oauth2缓存UserDetails到Ehcache
在Spring中有一个类CachingUserDetailsService实现了UserDetailsService接口,该类使用静态代理模式为UserDetailsService提供缓存功能。该类源码如下:
CachingUserDetailsService.java
public class CachingUserDetailsService implements UserDetailsService { private UserCache userCache = new NullUserCache(); private final UserDetailsService delegate; CachingUserDetailsService(UserDetailsService delegate) { this.delegate = delegate; } public UserCache getUserCache() { return this.userCache; } public void setUserCache(UserCache userCache) { this.userCache = userCache; } public UserDetails loadUserByUsername(String username) { UserDetails user = this.userCache.getUserFromCache(username); if (user == null) { user = this.delegate.loadUserByUsername(username); } Assert.notNull(user, "UserDetailsService " + this.delegate + " returned null for username " + username + ". This is an interface contract violation"); this.userCache.putUserInCache(user); return user; } }
CachingUserDetailsService默认的userCache属性值为new NullUserCache(),
该对象并未实现缓存。因为我打算使用EhCache来缓存UserDetails,所以需要使用Spring的EhCacheBasedUserCache类,该类是UserCache接口的实现类,主要是缓存操作。
缓存UserDetails到Ehcache的具体实现如下:
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"> <!-- 磁盘缓存位置 --> <diskStore path="java.io.tmpdir" /> <cache name="userCache" maxElementsInMemory="0" eternal="true" overflowToDisk="true" diskPersistent="true" memoryStoreEvictionPolicy="LRU"> </cache> </ehcache>
UserDetailsCacheConfig.java
@Slf4j @Configuration public class UserDetailsCacheConfig { @Autowired private CustomUserDetailsService customUserDetailsService; @Bean public UserCache userCache(){ try { EhCacheBasedUserCache userCache = new EhCacheBasedUserCache(); val cacheManager = CacheManager.getInstance(); val cache = cacheManager.getCache("userCache"); userCache.setCache(cache); return userCache; } catch (Exception e) { e.printStackTrace(); log.error(e.getMessage()); } return null; } @Bean public UserDetailsService userDetailsService(){ Constructor<CachingUserDetailsService> ctor = null; try { ctor = CachingUserDetailsService.class.getDeclaredConstructor(UserDetailsService.class); } catch (NoSuchMethodException e) { e.printStackTrace(); } Assert.notNull(ctor, "CachingUserDetailsService constructor is null"); ctor.setAccessible(true); CachingUserDetailsService cachingUserDetailsService = BeanUtils.instantiateClass(ctor, customUserDetailsService); cachingUserDetailsService.setUserCache(userCache()); return cachingUserDetailsService; } }
使用
@Autowired private UserDetailsService userDetailsService;
欢迎关注我的oauthserver项目,仅仅需要运行建表sql,修改数据库的连接配置,即可得到一个Spring Boot Oauth2 Server微服务。项目地址https://github.com/jeesun/oauthserver
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
- 在Mybatis中使用自定义缓存ehcache的方法
- SpringBoot2 整合Ehcache组件,轻量级缓存管理的原理解析
- Spring Boot集成Ehcache缓存解决方式
- SpringBoot中Shiro缓存使用Redis、Ehcache的方法
- 使用ehcache三步搞定springboot缓存的方法示例
- spring-boot整合ehcache实现缓存机制的方法
- Spring Boot缓存实战 EhCache示例
- Java Ehcache缓存框架入门级使用实例
- 详解SpringBoot缓存的实例代码(EhCache 2.x 篇)
- Spring+EHcache缓存实例详解
- 详解Spring MVC 集成EHCache缓存
- Java缓存ehcache的使用步骤
相关文章
解决IDEA和CMD中java命令提示错误: 找不到或无法加载主类的问题
这篇文章主要介绍了解决IDEA和CMD中java命令提示错误: 找不到或无法加载主类的问题,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-09-09MyBatis如何通过xml方式实现SaveOrUpdate
这篇文章主要讲如何通过xml方式实现SaveOrUpdate,但是仍然建议在Service中实现,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧2023-06-06MyBatis-Plus QueryWrapper及LambdaQueryWrapper的使用详解
这篇文章主要介绍了MyBatis-Plus QueryWrapper及LambdaQueryWrapper的使用详解,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2022-03-03Java图形化界面设计之布局管理器之BorderLayout案例详解
这篇文章主要介绍了Java图形化界面设计之布局管理器之BorderLayout案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下2021-08-08java substring(a)与substring(a,b)的使用说明
这篇文章主要介绍了java substring(a)与substring(a,b)的使用说明,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-10-10
最新评论