Spring 依赖注入的几种方式详解
ioc 简介
平常的java开发中,程序员在某个类中需要依赖其它类的方法。
通常是new一个依赖类再调用类实例的方法,这种开发存在的问题是new的类实例不好统一管理。
spring提出了依赖注入的思想,即依赖类不由程序员实例化,而是通过spring容器帮我们new指定实例并且将实例注入到需要该对象的类中。
依赖注入的另一种说法是"控制反转"。通俗的理解是:平常我们new一个实例,这个实例的控制权是我们程序员。
而控制反转是指new实例工作不由我们程序员来做而是交给spring容器来做。
spring有多种依赖注入的形式,本篇文章仅介绍spring通过xml进行ioc配置的方式。
1.set注入
这是最简单的注入方式,假设有一个springaction,类中需要实例化一个springdao对象,那么就可以定义一个private的springdao成员变量,然后创建springdao的set方法(这是ioc的注入入口):
随后编写spring的xml文件,<bean>中的name属性是class属性的一个别名,class属性指类的全名,因为在springaction中有一个公共属性springdao,所以要在<bean>标签中创建一个<proprty>标签指定springdao。<property>标签中的name就是springaction类中的springdao属性名,ref指下面<bean name="springdao"...>,这样其实是spring将springdaoimpl对象实例化并且调用springaction的setspringdao方法将springdao注入:
<!--配置bean,配置后该类由spring管理--> <bean name="springaction" class="com.bless.springdemo.action.springaction"> <!--(1)依赖注入,配置当前类中相应的属性--> <property name="springdao" ref="springdao"></property> </bean> <bean name="springdao" class="com.bless.springdemo.dao.impl.springdaoimpl"></bean>
2.构造器注入
这种方式的注入是指带有参数的构造函数注入,看下面的例子,我创建了两个成员变量springdao和user,但是并未设置对象的set方法,所以就不能支持第一种注入方式,这里的注入方式是在springaction的构造函数中注入,也就是说在创建springaction对象时要将springdao和user两个参数值传进来:
public class springaction { //注入对象springdao private springdao springdao; private user user; public springaction(springdao springdao,user user){ this.springdao = springdao; this.user = user; system.out.println("构造方法调用springdao和user"); } public void save(){ user.setname("卡卡"); springdao.save(user); } }
在xml文件中同样不用<property>的形式,而是使用<constructor-arg>标签,ref属性同样指向其它<bean>标签的name属性:
<!--配置bean,配置后该类由spring管理--> <bean name="springaction" class="com.bless.springdemo.action.springaction"> <!--(2)创建构造器注入,如果主类有带参的构造方法则需添加此配置--> <constructor-arg ref="springdao"></constructor-arg> <constructor-arg ref="user"></constructor-arg> </bean> <bean name="springdao" class="com.bless.springdemo.dao.impl.springdaoimpl"></bean> <bean name="user" class="com.bless.springdemo.vo.user"></bean>
解决构造方法参数的不确定性,你可能会遇到构造方法传入的两参数都是同类型的,为了分清哪个该赋对应值,则需要进行一些小处理:
下面是设置index,就是参数位置:
<bean name="springaction" class="com.bless.springdemo.action.springaction"> <constructor-arg index="0" ref="springdao"></constructor-arg> <constructor-arg index="1" ref="user"></constructor-arg> </bean>
另一种是设置参数类型:
<constructor-arg type="java.lang.string" ref=""/>
3.静态工厂的方法注入
静态工厂顾名思义,就是通过调用静态工厂的方法来获取自己需要的对象,为了让spring管理所有对象,我们不能直接通过"工程类.静态方法()"来获取对象,而是依然通过spring注入的形式获取:
package com.bless.springdemo.factory; import com.bless.springdemo.dao.factorydao; import com.bless.springdemo.dao.impl.factorydaoimpl; import com.bless.springdemo.dao.impl.staticfacotrydaoimpl; public class daofactory { //静态工厂 public static final factorydao getstaticfactorydaoimpl(){ return new staticfacotrydaoimpl(); } }
同样看关键类,这里我需要注入一个factorydao对象,这里看起来跟第一种注入一模一样,但是看随后的xml会发现有很大差别:
public class springaction { //注入对象 private factorydao staticfactorydao; public void staticfactoryok(){ staticfactorydao.savefactory(); } //注入对象的set方法 public void setstaticfactorydao(factorydao staticfactorydao) { this.staticfactorydao = staticfactorydao; } }
spring的ioc配置文件,注意看<bean name="staticfactorydao">指向的class并不是factorydao的实现类,而是指向静态工厂daofactory,并且配置 factory-method="getstaticfactorydaoimpl"指定调用哪个工厂方法:
<!--配置bean,配置后该类由spring管理--> <bean name="springaction" class="com.bless.springdemo.action.springaction" > <!--(3)使用静态工厂的方法注入对象,对应下面的配置文件(3)--> <property name="staticfactorydao" ref="staticfactorydao"></property> </property> </bean> <!--(3)此处获取对象的方式是从工厂类中获取静态方法--> <bean name="staticfactorydao" class="com.bless.springdemo.factory.daofactory" factory-method="getstaticfactorydaoimpl"></bean>
4.实例工厂的方法注入
实例工厂的意思是获取对象实例的方法不是静态的,所以你需要首先new工厂类,再调用普通的实例方法:
public class daofactory { //实例工厂 public factorydao getfactorydaoimpl(){ return new factorydaoimpl(); } }
那么下面这个类没什么说的,跟前面也很相似,但是我们需要通过实例工厂类创建factorydao对象:
public class springaction { //注入对象 private factorydao factorydao; public void factoryok(){ factorydao.savefactory(); } public void setfactorydao(factorydao factorydao) { this.factorydao = factorydao; } }
最后看spring配置文件:
<!--配置bean,配置后该类由spring管理--> <bean name="springaction" class="com.bless.springdemo.action.springaction"> <!--(4)使用实例工厂的方法注入对象,对应下面的配置文件(4)--> <property name="factorydao" ref="factorydao"></property> </bean> <!--(4)此处获取对象的方式是从工厂类中获取实例方法--> <bean name="daofactory" class="com.bless.springdemo.factory.daofactory"></bean> <bean name="factorydao" factory-bean="daofactory" factory-method="getfactorydaoimpl"></bean>
5.总结
spring ioc注入方式用得最多的是(1)(2)种,多写多练就会非常熟练。
另外注意:通过spring创建的对象默认是单例的,如果需要创建多实例对象可以在<bean>标签后面添加一个属性:
<bean name="..." class="..." scope="prototype">
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。