从头认识Spring-2.5 @Autowire @Inject @Qualifier @Named的相同与不同

@Autowire @Inject

相同点:

同样可以注入对象,在属性域上面注入、在set方法或者其他需要注入的方法上面注入、在构造器上面注入

不同点:

@Autowire 有@required标签,允许对象为空

@Inject没有@required标签,强制要求对象不能为空


@Qualifier @Named

相同点:

都是作为限定器来使用,都可以使用标签或者bean的id来限定


总结:这一章节主要介绍了@Autowire @Inject @Qualifier @Named的相同与不同。


目录:http://blog.csdn.net/raylee2007/article/details/50611627 

 

我的github:https://github.com/raylee2015/my_new_spring


你可能感兴趣的:(Spring,从头认识Spring)