java.lang.StackOverflowError: null
at org.springframework.data.redis.connection.DefaultedRedisConnection.zAdd
测试redis zset的时候出现错误!!!
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.3.7.RELEASE</version>
</dependency>
版本不兼容出现 堆栈溢出错误
更改一下redission的版本即可。
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.15.6</version>
</dependency>