使用Spring过程中的疑问
使用Autowired注解进行属性自动注入时,常常会有两个类同时继承一个接口的情况:
public interface InterfaceService { void doSomething(); } @Service("interfaceServiceA") public class InterfaceServiceA implements InterfaceService{ public void doSomething(){ System.out.println("xxx"); } } @Service("interfaceServiceB") public class InterfaceServiceB implements InterfaceService{ public void doSomething(){ System.out.println("xxx"); } } @Controller public class MvcController{ @Autowired InterfaceService interfaceServiceB; }
当存在上面的情况时,一直以为Autowired只通过byType进行Bean的自动装配。需要加@Qualifier("interfaceServiceB")才能注入具体的Bean。
其实Autowired自动装配类似于首先进行byType,当发现有多个时再进行byName。
所以,当接口与实现类一对一时,属性名称可以任意定义。一对多时,需要注意属性名必须与Bean在Spring 容器中的ID一致才能有效。
相关推荐
yupi0 2020-10-10
spring 2020-08-18
编程点滴 2020-07-29
幸运小侯子 2020-07-05
itjavashuai 2020-07-04
qingjiuquan 2020-06-29
shushan 2020-06-25
小鱿鱼 2020-06-22
咻pur慢 2020-06-18
melonjj 2020-06-17
qingjiuquan 2020-06-13
neweastsun 2020-06-05
小鱿鱼 2020-06-05
mxcsdn 2020-05-31
吾日五省我身 2020-05-27
牧场SZShepherd 2020-05-27
sweetgirl0 2020-05-14