首页 > 其他 > 详细

RedisTemplate 不能按类型装配注入

时间:2016-12-11 15:35:36      阅读:3377      评论:0      收藏:0      [点我收藏+]

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

@Autowired
private RedisTemplate<Serializable,Serializable> 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; 

测试通过。

RedisTemplate 不能按类型装配注入

原文:http://www.cnblogs.com/quincey-zhang/p/6159347.html

(3)
(3)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!