SpringBoot整合Redis,RedisConfig启动出错ror creating bean with name ‘redisTemplate‘ defined in class path
Posted HackShendi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot整合Redis,RedisConfig启动出错ror creating bean with name ‘redisTemplate‘ defined in class path相关的知识,希望对你有一定的参考价值。
这里记录一下
因为是测试项目,项目内没有加web依赖,所以启动就报错了。
百度搜都是加什么common,jedis依赖…
误打误撞加了web依赖就解决了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
以上是关于SpringBoot整合Redis,RedisConfig启动出错ror creating bean with name ‘redisTemplate‘ defined in class path的主要内容,如果未能解决你的问题,请参考以下文章
springboot+shiro+redis(单机redis版)整合教程-续(添加动态角色权限控制)