首页 > 代码库 > RedisTemplate 不能按类型装配注入
RedisTemplate 不能按类型装配注入
今天做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 不能按类型装配注入
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。