项目中引入RedisTemplate和Redisson时RedisTemplate无法使用zset问题(栈溢出stackOverflow)深入源码分析解决

文章目录

项目中引入RedisTemplate和Redisson时RedisTemplate无法使用zset问题(栈溢出stackOverflow)深入源码分析解决

依赖信息

同时引入了redisson和springboot-starter-data-redis

xml 复制代码
<dependency>
    <groupId>org.redisson</groupId>
    <artifactId>redisson-spring-boot-starter</artifactId>
	<version>3.16.1</version>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
    <version>2.2.3.RELEASE</version>
</dependency>

报错信息与分析

利用注入的RedisTemplate操作redis zset时报错

例如

java 复制代码
redisTemplate.opsForZSet().add("testzset","1",1)

于是报错

sh 复制代码
java.lang.StackOverflowError

原因是Redisson未实现zset操作,直接让DefaultedRedisConnection执行zadd

而zsetCommands这个方法没有实现,于是走了接口中默认的实现,默认实现又返回this,于是自己调自己来回调,就栈溢出了,stackoverflow

我们看看redisson里的RedisConnection的实现类

可以看到是搜不到这个方法的于是走的接口中默认的,于是自己调自己,栈溢出

解决办法

手动创建一个使用LettuceConnectionFactory作为RedisConnectionFactory的RedisTemplate

我们可以注入spring redis的配置,手动创建

简单描述下步骤:

  1. 创建配置对象RedisStandaloneConfiguration
  2. 创建链接工厂LettuceConnectionFactory
  3. 初始化工厂lettuceConnectionFactory.afterPropertiesSet();
  4. 创建 RedisTemplate并将链接工厂设置上去,执行RedisTemplate初始化(afterPropertiesSet方法),保存创建好的RedisTemplate对象
  5. 那些序列化的配置可以自己修改也可以不要,我这里做了一些序列化修改
java 复制代码
 public void init(RedisProperties redisProperties) {
        // 构建 LettuceConnectionFactory,redisson的是有坑的,只实现了大部分操作,zset操作未实现
        RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration();
        redisStandaloneConfiguration.setHostName(redisProperties.getHost());
        redisStandaloneConfiguration.setPort(redisProperties.getPort());
        redisStandaloneConfiguration.setPassword(redisProperties.getPassword());
        redisStandaloneConfiguration.setDatabase(redisProperties.getDatabase());
        LettuceConnectionFactory lettuceConnectionFactory = new LettuceConnectionFactory(redisStandaloneConfiguration);
        lettuceConnectionFactory.afterPropertiesSet();
        // 指定相应的序列化方案
        StringRedisSerializer keySerializer = new StringRedisSerializer();
        GenericJackson2JsonRedisSerializer valueSerializer = new GenericJackson2JsonRedisSerializer();
        ObjectMapper objectMapper;
        // 通过反射获取Mapper对象, 增加一些配置, 增强兼容性
        try {
            Field field = GenericJackson2JsonRedisSerializer.class.getDeclaredField("mapper");
            field.setAccessible(true);
            objectMapper = (ObjectMapper) field.get(valueSerializer);

            // 配置[忽略未知字段]
            objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

            // 配置[时间类型转换]
            JavaTimeModule timeModule = new JavaTimeModule();

            // LocalDateTime序列化与反序列化
            timeModule.addSerializer(new LocalDateTimeSerializer(DATE_TIME_FORMATTER));
            timeModule.addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer(DATE_TIME_FORMATTER));

            // LocalDate序列化与反序列化
            timeModule.addSerializer(new LocalDateSerializer(DATE_FORMATTER));
            timeModule.addDeserializer(LocalDate.class, new LocalDateDeserializer(DATE_FORMATTER));

            // LocalTime序列化与反序列化
            timeModule.addSerializer(new LocalTimeSerializer(TIME_FORMATTER));
            timeModule.addDeserializer(LocalTime.class, new LocalTimeDeserializer(TIME_FORMATTER));

            objectMapper.registerModule(timeModule);

        } catch (Exception e) {
            log.error("【DistributeDelayTask】 initializing redis error {}", e.getMessage());
            throw new RuntimeException("初始化RedisTemplate失败");
        }

        // 构建RedisTemplate
        RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(lettuceConnectionFactory);
        template.setKeySerializer(keySerializer);
        template.setHashKeySerializer(keySerializer);
        template.setValueSerializer(valueSerializer);
        template.setHashValueSerializer(valueSerializer);
        template.afterPropertiesSet();

        this.redisTemplate = template;
    }

解决后测试


我们看看Letture下面的是不是有呢?

可以看到确实是实现了的,保持打破砂锅问到底的习惯,把框架原理理解透彻,其实也就很简单。

相关推荐
万物皆字节4 分钟前
Springboot3 自动装配流程与核心文件:imports文件
spring boot
问道飞鱼7 分钟前
【Springboot知识】Springboot结合redis实现分布式锁
spring boot·redis·分布式
Yeats_Liao8 分钟前
Spring 框架:配置缓存管理器、注解参数与过期时间
java·spring·缓存
Yeats_Liao8 分钟前
Spring 定时任务:@Scheduled 注解四大参数解析
android·java·spring
码明8 分钟前
SpringBoot整合ssm——图书管理系统
java·spring boot·spring
某风吾起12 分钟前
Linux 消息队列的使用方法
java·linux·运维
xiao-xiang16 分钟前
jenkins-k8s pod方式动态生成slave节点
java·kubernetes·jenkins
取址执行27 分钟前
Redis发布订阅
java·redis·bootstrap
S-X-S40 分钟前
集成Sleuth实现链路追踪
java·开发语言·链路追踪
快乐就好ya1 小时前
xxl-job分布式定时任务
java·分布式·spring cloud·springboot