springBoot required a bean of type 'org.springframework.data.redis.core.RedisTemplate'

 springBoot 启动报错:   required a bean of type 'org.springframework.data.redis.core.RedisTemplate' 

       产生这个问题的原因是:系统启动的时候没有扫描到这个RedisTemplate  bean,报错

      排查方向目前有两个:

     1.Application 启动类位置问题

        springBoot启动时候,会自动扫描Application所在包路径下的所有bean,检查你所注入RedisTemplate的这个类所在目录,是否再启动类的目录结构之下

    如:Application  启动类目录结果    com.abc.common   

    那么:注入RedisTemplate 所在的类  必须在 com.abc.common.*   目录之下,保证启动时能被 扫描

2.路径对,还出错,那就检查是否添加继承CachingConfigurerSupport的类

如:

@Configuration
@EnableCaching // 开启缓存支持
public class RedisConfig extends CachingConfigurerSupport {

 

}

欢迎大家补充其他的原因。。。。。。。

    

   

 

你可能感兴趣的:(springboot,springBoot)