今天做RedisTemplate的测试,在Spring boot 中自动注入RedisTemplate,测试报错。

@Autowired  
private RedisTemplate redisTemplate; 

报错:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.data.redis.core.RedisTemplate<java.io.Serializable, java.io.Serializable>' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

看spring boot文档发现有这么一句:
If you add a @Bean of your own of any of the auto-configured types it will replace the default (except in the case of RedisTemplate the exclusion is based on the bean name ‘redisTemplate’ not its type).

将代码改成:

@Resource
private RedisTemplate<Serializable,Serializable> redisTemplate;
测试通过。

你可能感兴趣的内容
Redis登录远程数据库 收藏,3997 浏览
1条评论
quincey 1年前

自己评论自己

QU

quincey

这家伙太懒了,什么都没留下
Owner