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.(Ljava/lang/String;IIIZLjavax/net/ssl/SSLSocketFactory;Ljavax/net/ssl/SSLParameters;Ljavax/net/ssl/HostnameVerifier;)V

 

本来用的是2.8.0


    redis.clients
    jedis
    2.8.0

改为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版本,没有问题,成功部署

 

你可能感兴趣的:(java)