关于springboot中redisTemplate报错的原因
2018-05-10 本文已影响65人
悦者生存
是因为spring-boot-starter-parent的版本过高的原因
解决方法,降低parent的版本
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath/>
</parent>