一setter方法注入
設定檔如下:
<bean id="helloAction" class="org.yoo.action.SpringSetterHelloAction"> <!-- setter injection using the nested <ref/> element --> <property name="helloservice"><ref bean="helloService"/></property> <!--可以不设置类型 --> <property name="name" value="yoo"></property> </bean>
action實作類別中程式碼:
private IHelloService helloservice;private String name ; public void sayHello(){helloservice.sayHello(); System.out.println(this.name);} public void setHelloservice(IHelloService helloservice) {this.helloservice = helloservice;} public void setName(String name) {this.name = name;}
這裡的name和helloservice都採用屬性的setter方法注入。即在類別中設定全域屬性,並對屬性有setter方法,以供容器注入。
二 建構子注入
spring也支援建構器注入,也也就是有些資料中的建構子或建構子注入。
先看設定檔:
<!--普通构造器注入--> <bean id="helloAction" class="org.yoo.action.ConstructorHelloAction"> <!--type 必须为Java.lang.String 因为是按类型匹配的,不是按顺序匹配--> <constructor-arg type="java.lang.String" value="yoo"/> <!-- 也可以使用index来匹配--> <!--<constructor-arg index="1" value="42"/>--> <constructor-arg><ref bean="helloService"/> </constructor-arg> </bean>
action實作類別中程式碼:
private HelloServiceImpl helloservice; private String name ; public SpringConstructorHelloAction(HelloServiceImpl helloservice,String name){this.helloservice = helloservice; this.name = name ;} @Overridepublic void sayHello() {helloservice.sayHello(); System.out.println(this.name);}
同樣設定2個屬性,然後在建構子中註入。
三靜態工廠注入
設定檔如下:
<!--静态工厂构造注入--> <!--注意这里的class 带factory-method参数--> <!--factory-method的值是FactoryHelloAction中的工厂方法名createInstance--> <bean id="helloAction" class="org.yoo.di.FactoryHelloAction" factory-method="createInstance"> <constructor-arg type="java.lang.String" value="yoo"/> <constructor-arg> <ref bean="helloService"/> </constructor-arg> </bean>
action實作類別:
private HelloServiceImpl helloservice; private String name = null; private SpringFactoryHelloAction(String name ,HelloServiceImpl helloservice){this.helloservice = helloservice ; this.name = name ;} public static SpringFactoryHelloAction createInstance(String name ,HelloServiceImpl helloservice) {SpringFactoryHelloAction fha = new SpringFactoryHelloAction (name,helloservice); // some other operationsreturn fha;} @Overridepublic void sayHello() {helloservice.sayHello(); System.out.println(this.name);}
四無配置檔案注入(自動注入)
上面三種方法都需要編寫設定文件,在spring2.5中也提供了不編寫設定檔的ioc實作。需要注意的是,無設定檔指bean之間依賴,不基於設定文件,而不是指沒有spring設定檔。
設定檔如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans //m.sbmmt.com/"> <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/> <bean id="helloService" class="org.yoo.service.HelloServiceImpl"> </bean> <bean id="helloAction" class="org.yoo.action.AutowiredHelloAction"> </bean> </beans>
可見上面只是設定了helloService和helloAction兩個bean,並沒有設定helloAction對helloService的依賴。
另外
action實作類別:
/* * 属性自动装载 */ /* @Autowired private HelloService helloservice; @Override public void sayHello() { helloservice.sayHello(); 。
上面程式碼很簡單,在屬性上加上 @Autowired註釋,spring會自動注入HelloService 。
同樣也支援建構器和setteer方法的注入,如下:
建構器自動注入:
/* * 还可以使用构造函数设置 */ @Autowired public SpringAutowiredHelloAction(HelloServiceImpl helloservice){ this.helloservice = helloservice; }
setter方法自動注入:
/* * 也可以使用set方法设置 */ /* @Autowired public void setHelloservice(HelloService helloservice) { this.helloservice = helloservice; }
最後在spring的reference文檔中有提到,如果不使用自動注入,盡量使用setter方法,一般通用的也是使用setter方法。
而使用自動注入還是設定檔方式,如果jdk低於1.5或spring不是2.5,就只能夠使用設定檔方式了。其它的就看實際項目選擇了。
以上就是Spring Ioc-依賴注入的幾種方式的詳情介紹的內容,更多相關內容請關注PHP中文網(m.sbmmt.com)!