package
com.zj.ioc.di;
public
class
Content {
void
BusniessContent(){
System.
out
.println(
"do business"
);
}
void
AnotherBusniessContent(){
System.
"do another business"
);
}
}
|
Spring依赖注入(DI)的三种方式,分别为:
2.构造方法注入
3.接口注入
@H_403_406@
下面介绍一下这三种依赖注入在Spring中是怎么样实现的。
Setter方法注入
首先我们需要以下几个类:
接口Logic.java
接口实现类LogicImpl.java
一个处理类LoginAction.java
还有一个测试类TestMain.java
Logic.java如下: @H_154_502@@H_403_406@
- @H_403_520@
- @H_403_520@publicclassLogicImplimplementsLogic{
- //实现类
- @H_403_520@
- @H_403_520@publicStringgetName(){
- @H_403_520@return"lishehe";
- @H_403_520@</span></span>
LoginAction.java会根据使用不同的注入方法而稍有不同
- @H_403_520@publicclassLoginAction{
- @H_403_520@privateLogiclogic;
- @H_403_520@publicvoidexecute(){
- @H_403_520@Stringname=logic.getName();
- @H_403_520@System.out.print("MyNameIs"+name);
- @H_403_520@}
- /**
- *@returnthelogic
- */
- @H_403_520@publicLogicgetLogic(){
- @H_403_520@returnlogic;
- *@paramlogic
- *thelogictoset
- @H_403_520@publicvoidsetLogic(Logiclogic){
- @H_403_520@this.logic=logic;
- @H_403_520@</span></span>
客户端测试类
TestMain.java
- @H_403_520@<spanstyle="font-size:18px;">packageDI;
- @H_403_520@importorg.springframework.context.ApplicationContext;
- @H_403_520@importorg.springframework.context.support.FileSystemXmlApplicationContext;
- @H_403_520@publicclassTestMain{
- *@paramargs
- @H_403_520@publicstaticvoidmain(String[]args){
- //得到ApplicationContext对象
- @H_403_520@ApplicationContextctx=newFileSystemXmlApplicationContext(
- @H_403_520@"applicationContext.xml");
- //得到Bean
- @H_403_520@LoginActionloginAction=(LoginAction)ctx.getBean("loginAction");
- @H_403_520@loginAction.execute();
- @H_403_520@</span>
定义了一个Logic类型的变量logic,在LoginAction并没有对logic进行实例化,而只有他对应的setter/getter方法,因为我们这里使用的是Spring的依赖注入的方式
applicationContext.xml配置文件如下:
- @H_403_520@<spanstyle="font-size:18px;"><?xmlversion="1.0"encoding="UTF-8"?>
- @H_403_520@<!--
- @H_403_520@-ApplicationcontextdefinitionforJPetStore'sbusinesslayer.
- @H_403_520@-ContainsbeanreferencestothetransactionmanagerandtotheDAOsin
- @H_403_520@-dataAccessContext-local/jta.xml(seeweb.xml's"contextConfigLocation").
- @H_403_520@-->
- @H_403_520@<beansxmlns="http://www.springframework.org/schema/beans"
- @H_403_520@xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- @H_403_520@xmlns:aop="http://www.springframework.org/schema/aop"
- @H_403_520@xmlns:tx="http://www.springframework.org/schema/tx"
- @H_403_520@xsi:schemaLocation="
- @H_403_520@http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- @H_403_520@http://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- @H_403_520@http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
- @H_403_520@<beanid="logic"class="DI.LogicImpl"/>
- @H_403_520@<beanid="loginAction"class="DI.LoginAction">
- @H_403_520@<propertyname="logic"ref="logic"></property>
- @H_403_520@</bean>
- @H_403_520@</beans>
- @H_403_520@</span>
运行效果:
@H_403_406@
@H_403_406@
构造器注入
顾名思义,构造方法注入,就是我们依靠LoginAction的构造方法来达到DI的目的,如下所示:
applicationContext.xml配置文件如下:
- @H_403_520@<spanstyle="font-size:18px;"><beanid="logic"class="DI.LogicImpl"/>
- @H_403_520@<beanid="loginAction"class="DI.LoginAction">
- @H_403_520@<constructor-argindex="0"ref="logic"></constructor-arg>
- @H_403_520@</bean></span>
我们使用constructor-arg来进行配置,index属性是用来表示构造方法中参数的顺序的,如果有多个参数,则按照顺序,从0,1...来配置
我们现在可以运行testMain.java了,结果跟使用Setter方法注入完全一样.
效果图
@H_403_406@
其中需要注意一点有:构造函数有多个参数的话,如:参数1,参数2,而参数2依赖于参数1,这中情况则要注意构造函数的顺序,必须将参数1放在参数2之前。
接口注入@H_403_406@
下面继续说说我们不常用到的接口注入,还是以LogicAction为例,我们对他进行了修改,如下所示:
LogicAction.java
- @H_403_520@privateLogiclogic;
- @H_403_520@publicvoidexecute(){
- @H_403_520@try{
- @H_403_520@Objectobj=Class.forName("DI.LogicImpl")
- @H_403_520@.newInstance();
- @H_403_520@logic=(Logic)obj;
- @H_403_520@Stringname=logic.getName();
- @H_403_520@System.out.print("MyNameIs"+name);
- @H_403_520@}catch(Exceptione){
- @H_403_520@e.printStackTrace();
- @H_403_520@</span>
- @H_403_520@<spanstyle="font-size:18px;"><beanid="logic"class="DI.LogicImpl"/>
- @H_403_520@<beanid="loginAction"class="DI.LoginAction"></span>
@H_403_406@
总结
对于Spring的依赖注入,最重要的就是理解他的,一旦理解了,将会觉得非常的简单。无非就是让容器来给我们实例化那些类,我们要做的就是给容器提供这个接口,这个接口就我们的set方法或者构造函数了。