SpringBoot中注入RedisTemplate泛型异常
报错如下:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'redisStockService': Unsatisfied dependency expressed through field 'redisTemplate'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.data.redis.core.RedisTemplate<java.lang.String, java.lang.Object>' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
问题原因
RedisTemplate<String,Object>注入时用到了@Autowired注解,@Autowired默认按照类型byType装配的。当使用泛型装配的时候,springboot中无此类型。简单的办法是去掉泛型,但是不够优雅。
原理分析
将@Autowired注解修改成@Resource注解即可。
@Resource的作用相当于@Autowired,@Autowired按类型自动注入,而@Resource默认按名称自动注入。@Resource有两个属性是比较重要的,分别是name和type,Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析为bean的类型。所以如果使用name属性,则使用byName的自动注入策略,而使用type属性时则使用byType自动注入策略。如果既不指定name也不指定type属性,这时将通过反射机制使用byName自动注入策略。
@Resource装配顺序
1、 如果同时指定了name和type,则从Spring上下文中找到唯一匹配的bean进行装配,找不到则抛出异常。
2、如果指定了name,则从上下文中查找名称匹配的bean进行装配,找不到则抛出异常。
3、如果指定了type,则从上下文中找到类型匹配的唯一bean进行装配,找不到或者找到多个,都会抛出异常。
4、如果既没有指定name,又没有指定type,则自动按照byName方式进行装配。如果没有匹配,则回退为一个原始类型进行匹配,如果匹配则自动装配。
解决
或者