spring+redis 报错 org.springframework.core.serializer.support.DeserializingConverter.(Ljava/lang

这个问题的原因大概就是spring-data-redis.jar包版本不对 ,下面版本可以正常启动

<dependency>
     <groupId>org.springframework.data</groupId>
     <artifactId>spring-data-redis</artifactId>
     <version>1.6.2.RELEASE</version>
</dependency>
<dependency>
      <groupId>redis.clients</groupId>
      <artifactId>jedis</artifactId>
      <version>2.9.0</version>
</dependency>

参考地址:http://www.bubuko.com/infodetail-2003177.html

猜你喜欢

转载自blog.csdn.net/qq_22165667/article/details/82848693