分布式Shiro,SpringBoot项目Shiro整合Redis

打印 上一主题 下一主题

主题 652|帖子 652|积分 1956

分布式Shiro,SpringBoot项目Shiro整合Redis

====================紧张 Begin====================
你的SpringBoot项目已经使用了Shiro,而且可以正常使用。本篇文章的紧张目的是将Shiro生存在服务器内存中的session信息改为使用Redis生存session信息
====================紧张 End====================
正文开始

0、前情概要

由于shiro不支持分布式场景下使用(大概是支持,但没找到),但是现在项目都是分布式的项目,一个服务要摆设多个实例,明显shiro已经无法满足现有的情况。为了使shiro可以在分布式项目中使用,博主查阅了很多资料,此中一个包罗引入shiro-redis依赖来实现(并未实操),但是看这个依赖最新的版本照旧在2020年,果断放弃(应该有很多弊端,我司对弊端的把控极为严格!!!),以是就想着是否可以根据现在把握的技能和网上的实践来手动实现一下shiro整合redis。以下就是博主的实现过程(码多话少,有事滴滴~)
1、引入依赖

  1. <dependency>
  2.     <groupId>org.springframework.boot</groupId>
  3.     <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>
  5. <dependency>
  6.     <groupId>org.apache.commons</groupId>
  7.     <artifactId>commons-pool2</artifactId>
  8. </dependency>
复制代码
2、创建Redis配置类

  1. /**
  2. * Redis配置类
  3. */
  4. @EnableCaching
  5. @Configuration
  6. public class RedisConfiguration {
  7.     @Autowired
  8.     RedisCacheProperties redisCacheProperties;
  9.     @Bean()
  10.     public RedisTemplate<String, Object> redisShiroTemplate(@Autowired RedisConnectionFactory factory) {
  11.         RedisTemplate<String, Object> template = new RedisTemplate<>();
  12.         template.setConnectionFactory(factory);
  13.         template.setKeySerializer(new StringRedisSerializer());
  14.         template.setHashKeySerializer(new StringRedisSerializer());
  15.         // shiro序列化存储session存在问题(https://www.cnblogs.com/ReturnOfTheKing/p/18224205)
  16.         /*template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
  17.         template.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());*/
  18.         return template;
  19.     }
  20.     @Bean(name = {"cacheKeyGenerator"})
  21.     public KeyGenerator cacheKeyGenerator() {
  22.         return (Object o, Method method, Object... objects) -> {
  23.             StringBuilder sb = new StringBuilder();
  24.             sb.append(o.getClass().getName());
  25.             sb.append(method.getName());
  26.             for (Object obj : objects) {
  27.                 sb.append(obj.toString());
  28.             }
  29.             return sb.toString();
  30.         };
  31.     }
  32.     @Bean(name = "cacheManager")
  33.     public RedisCacheManager cacheManager(@Autowired RedisConnectionFactory redisConnectionFactory) {
  34.         RedisCacheConfiguration defaultConfig = RedisCacheConfiguration.defaultCacheConfig()
  35.                 .entryTtl(Duration.ofDays(7))
  36.                 .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer()))
  37.                 .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()))
  38.                 .disableCachingNullValues();
  39.         RedisCacheManager.RedisCacheManagerBuilder builder =
  40.                 RedisCacheManager.RedisCacheManagerBuilder.fromConnectionFactory(redisConnectionFactory);
  41.         Set<String> cacheNames = new HashSet<>();
  42.         ConcurrentHashMap<String, RedisCacheConfiguration> cacheConfig = new ConcurrentHashMap<>();
  43.         for (Map.Entry<String, Duration> entry : redisCacheProperties.getCacheDuration().entrySet()) {
  44.             cacheNames.add(entry.getKey());
  45.             cacheConfig.put(entry.getKey(), defaultConfig.entryTtl(entry.getValue()));
  46.         }
  47.         RedisCacheManager cacheManager = builder
  48.                 .transactionAware()
  49.                 .cacheDefaults(defaultConfig)
  50.                 .initialCacheNames(cacheNames)
  51.                 .withInitialCacheConfigurations(cacheConfig)
  52.                 .build();
  53.         return cacheManager;
  54.     }
  55. }
复制代码
  1. /**
  2. * RedisCache参数
  3. */
  4. @Component
  5. @Getter
  6. public class RedisCacheProperties {
  7.     private final Map<String, Duration> cacheDuration = new HashMap<>();
  8. }
复制代码
3、继承AbstractSessionDAO,创建自界说RedisSessionDao 类

  1. /**
  2. * 自定义RedisSessionDAO
  3. */
  4. @Component
  5. public class RedisSessionDao extends AbstractSessionDAO {
  6.     @Value("${session.redis.expireTime}")
  7.     private long expireTime;
  8.     @Autowired
  9.     private RedisTemplate<String, Object> redisShiroTemplate;
  10.     private String getKey(String originalKey) {
  11.         return "shiro_redis_session_key_:" + originalKey;
  12.     }
  13.     @Override
  14.     protected Serializable doCreate(Session session) {
  15.         Serializable sessionId = this.generateSessionId(session);
  16.         this.assignSessionId(session, sessionId);
  17.         redisShiroTemplate.opsForValue().set(getKey(session.getId().toString()), session, expireTime, TimeUnit.SECONDS);
  18.         return sessionId;
  19.     }
  20.     @Override
  21.     protected Session doReadSession(Serializable sessionId) {
  22.         return sessionId == null ? null : (Session) redisShiroTemplate.opsForValue().get(getKey(sessionId.toString()));
  23.     }
  24.     @Override
  25.     public void update(Session session) throws UnknownSessionException {
  26.         if (session != null && session.getId() != null) {
  27.             session.setTimeout(expireTime * 1000);
  28.             redisShiroTemplate.opsForValue().set(getKey(session.getId().toString()), session, expireTime, TimeUnit.SECONDS);
  29.         }
  30.     }
  31.     @Override
  32.     public void delete(Session session) {
  33.         if (session != null && session.getId() != null) {
  34.             redisShiroTemplate.opsForValue().getOperations().delete(getKey(session.getId().toString()));
  35.         }
  36.     }
  37.     @Override
  38.     public Collection<Session> getActiveSessions() {
  39.         return Collections.emptySet();
  40.     }
  41. }
复制代码
4、在ShiroConfiguration配置类中使用自界说SessionDAO

  1. @Bean
  2. public SessionManager shiroSessionManager() {
  3.     DefaultWebSessionManager sessionManager = new DefaultWebSessionManager();
  4.     //session过期时间
  5.     sessionManager.setGlobalSessionTimeout(expireTime * 1000);
  6.     sessionManager.setSessionDAO(redisSessionDao);
  7.     return sessionManager;
  8. }
复制代码
问题

往redis中放的数据记得实现 序列化接口,否则会报错!
参考


  • 分布式shiro,session共享
  • Shiro权限管理框架(二):Shiro结合Redis实现分布式情况下的Session共享
  • shiro org.apache.shiro.session.mgt.SimpleSession对象 反序列化失败

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

农妇山泉一亩田

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表