通过@Resource注解实现属性装配代码详解
本文主要探究的问题时使用@resource注解实现属性装配,当中涉及依赖注入—手工装配,@autowired和@resource注解的区别等相关内容,具体如下。
使用field注入(用于注解方式):注入依赖对象可以采用手工装配或者手工自动装配。在实际应用中建议使用手工装配,因为自动装配会产生未知情况,开发人员无法预见最终的装配结果。
依赖注入—手工装配
手工装配依赖对象,在这种方式中又有两种编程方式。
1.在xml配置文件中,通过bean节点配置,如:
<bean id="orderservice" class="cn.itcast.service.orderservicebean"> //构造器注入 <constructor-arg index="0" type="java.lang.string" value="xxx"/> //属setter方法注入 <property name="name" value="zhao"/> </bean>
2.在java代码中使用@autowired或者@resource注解方式进行装配。但我们需要在xml配置文件中配置一下信息
<beans xmlns="http://www.springframework.org/schema/beans" xmlns="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5xsd"> </beans>
这个配置隐式注册了多个对注释进行解析处理的处理器:
autowiredannotationbeanpostprocessor,commonannotationbeanpostprocessor
persistenceannotationbeanprocessor,requiredannotationbeanpostprocessor
3.区别
在java代码中使用@autowired或@resource注解方式进行装配。这两个注解的区别是@autowired默认按类型装配@resource默认按名称进行装配,当找不到与名称匹配的bean才会按类型装配
@autowired private persondao persondao;//用于字段上 @autowired public void setorderdao(orderdao orderdao){ this.orderdao = orderdao; //用于属性的setter方法上 }
@autowired注解是按类型装配依赖对象,默认情况下它要求依赖对象必须存在,如果允许null值,可以设置它required属性为false;如果我们想使用名称装配,可以结合@qualfier注解一起使用,如下:
@autowired@qualifier("persondao") private persondao persondao;
@resource注解和@autowired一样,可以标注在字段或者属性的setter方法上,但它默认按名称装配。名称可以通过@resource的name属性指定;如果没有指定name属性,当注解标注在字段上,即默认字段的名称作为bean名称寻找依赖对象;当注解标注在属性setter方法上,即默认取属性名作为bean名称寻找依赖对象
@resource(name="persondaobean") private persondao persondao;
注:如果没有指定name属性,并且按照默认的名称仍找不到对象时,@resource注解会回退到按类型装配。但一旦指定了name属性,就只能按名称装配了。
总结
以上就是本文关于通过@resource注解实现属性装配代码详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
《spring用代码来读取properties文件实例解析》
如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!