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