赞
踩
这个应该是lettuce客户端的bug,找了好久的问题,把lettuce排除掉使用jedis客户端就可以使用了!
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
</exclusion>
</exclusions>
</dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。