org.springframework.data.redis.connection.RedisConnectionFactory' that could not be found
#Error creating bean with name 'redisTemplate' defined in class path resource
我是因為沒有引入jedis依賴造成的報錯。還有原因是由於jedis 和spring-boot-starter-data-redis 的maven依賴的版本不相容導致, 是經常會出現的問題。出現JedisConnectionFactory 無法創建也是一樣。
只需要引入jedis依賴,即可解決
<!--redis缓存--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!--spring boot2.x以上版本需要引入,不然启动会报错!--> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency>
再次啟動
以上是SpringBoot整合redis報錯怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!