1. 程式人生 > >springboot配置redis的錯誤:NoSuchMethodError: redis.clients.jedis.Jedis和ERR Unsupported CONFIG parameter

springboot配置redis的錯誤:NoSuchMethodError: redis.clients.jedis.Jedis和ERR Unsupported CONFIG parameter

專案用spring boot 2.0.2搭建,redis用的是windows單機的,自己寫的專案不想用的太複雜,本來用測試類跑的好好的,突然想要釋出成war包執行,就發現好多問題

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'enableRedisKeyspaceNotificationsInitializer' defined in class path resource [org/springframework/boot/autoconfigure/session/RedisSessionConfiguration$SpringBootRedisHttpSessionConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: redis.clients.jedis.Jedis.<init>

(Ljava/lang/String;IIIZLjavax/net/ssl/SSLSocketFactory;Ljavax/net/ssl/SSLParameters;Ljavax/net/ssl/HostnameVerifier;)V

 

本來用的是2.8.0

<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>2.8.0</version>
</dependency>

改為2.9.0版本解決,然後又遇到

ERR Unsupported CONFIG parameter: notify-keyspace-events

百度了一下知道是redis版本的問題,但不是程式碼的,是redis Server 版本太低,也不知道自己的是什麼版本

參考了這篇 https://blog.csdn.net/WYpersist/article/details/81231580

用 redis server 3.0版本,沒有問題,成功部署