【开发错误记录】SpringBoot2.x.x以上版本整合redis报错:Error creating bean with name ‘redisTemplate‘...

自己搭建了一套项目,使用的springboot版本是2.3.0,在启动的时候接二连三的报错,于是开始了漫长的错误查找之旅,起初以为是框架哪里没有配置好,最后发现是redis的问题。

错误一

org.springframework.data.redis.connection.RedisConnectionFactory’ that could not be found

错误二

Error creating bean with name ‘redisTemplate’ defined in class path resource
【开发错误记录】SpringBoot2.x.x以上版本整合redis报错:Error creating bean with name ‘redisTemplate‘..._第1张图片

原因

我是因为没有引入jedis依赖造成的报错。还有原因是由于jedis 和spring-boot-starter-data-redis 的maven依赖的版本不兼容导致, 是经常会出现的问题。出现JedisConnectionFactory 无法创建也是一样。

解决

只需要引入jedis依赖,即可解决

   
   <dependency>
       <groupId>org.springframework.bootgroupId>
       <artifactId>spring-boot-starter-data-redisartifactId>
   dependency>
   
   <dependency>
       <groupId>redis.clientsgroupId>
       <artifactId>jedisartifactId>
   dependency>

再次启动
【开发错误记录】SpringBoot2.x.x以上版本整合redis报错:Error creating bean with name ‘redisTemplate‘..._第2张图片
完美解决~

你可能感兴趣的:(开发错误记录,java,spring,boot,redis)