想要使用redis中的geo方法 但是发现redis的版本太低 2.9.0的 然后升级了版本
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
</dependency>
但是项目启动时报错
Caused by: java.lang.ClassNotFoundException: redis.clients.util.SafeEncoder
我看jar包中有这个 但是和2.9.0版本的路径不一样了 网上都说要降低版本 但是我不降低版本应该怎么处理