看spring的书,书上讲解的是通过applicationcontext的getbean()方法来获得注入。
然后看了一个现成的工程,applicationcontext.xml里配了datasource和sessionfactory,然后dao类通过继承HibernateDaoSupport来获得HibernateTemplate,就可以进行持久化操作了。
然后就想学以致用,看看HibernateDaoSupport里是怎么实现的对sessionfactory的注入的。
结果发现HibernateDaoSupport类里是有setSessionFactory(),但是没看到调用applicationcontext的getbean()方法,工程里继承HibernateDaoSupport的dao中也没有相关调用。。。
各种百度之后,终于知道原因。这是因为spring的自动注入功能,我们只要在xml里为所有继承HibernateDaoSupport的dao打开autowire属性就可以啦。就像我的工程里,在<beans default-autowire="byName">里加一个如上的default-autowire属性,我们的<beans>下的所有<bean>就都具备了通过属性的名字的方式查找JavaBean依赖的对象并为其注入的功能。比如说我们的MyDao类的bean配在了该beans范围内后,MyDao继承自HibernateDaoSupport,Spring IoC容器会在配置文件中查找id/name属性为sessionfactory的bean,然后继承来的setSessionFactory()方法为其注入。
如下是关于autowier的别人那摘抄过来的详解(原文地址:http://blog.csdn.net/virgoboy2004/article/details/7525795)
当我们在使用Spring的IOC功能的时候,Spring提供了集中注入方式:属性注入,构造函数注入和工厂方法注入,我们更多的时候是使用的属性注入,即set方法注入。使用set方法注入要求我们在写bean的配置文件的时候,需要我们手动设置properties。诸如:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="testBean" class="com.jack.TestBean" scope="prototype"/> <bean id="testAction" class="com.jack.TestAction" scope="prototype"> <property name="testBean" ref="testBean"/> </bean> </beans>
这样使用Spring起来相当麻烦。
【问题分析以及解决办法】我们在想,会不会有那种自动注入的方法呢?就是不用我们在Spring配置文件里面写入
<property name="testBean" ref="testBean"/>
之类的语句,用某种方法让Spring自己就知道注入哪种类型的对象。
当当当当。。。。。Spring这么smart的开源框架,早就给大家想到了。。。。他就是autowire
Spring的bean有一个autowire的属性,它可以为以下的6个值。
1、 No:即不启用自动装配。Autowire默认的值。 2、 byName:通过属性的名字的方式查找JavaBean依赖的对象并为其注入。比如说类Computer有个属性printer,指定其autowire属性为byName后,Spring IoC容器会在配置文件中查找id/name属性为printer的bean,然后使用Seter方法为其注入。 3、 byType:通过属性的类型查找JavaBean依赖的对象并为其注入。比如类Computer有个属性printer,类型为Printer,那么,指定其autowire属性为byType后,Spring IoC容器会查找Class属性为Printer的bean,使用Seter方法为其注入。 4、 constructor:通byType一样,也是通过类型查找依赖对象。与byType的区别在于它不是使用Seter方法注入,而是使用构造子注入。 5、 autodetect:在byType和constructor之间自动的选择注入方式。 6、 default:由上级标签<beans>的default-autowire属性确定
一般,我们在使用的时候都会用byName,这种也就是说,当我们定义bean的时候,在给bean取名的时候,约定俗成的讲bean的id设置成首字母小写的类名。在我上面的例子里面即是testBean和testAction,这样当我们在testAction里面要自动注入TestBean的时候。就要在里面写一个Set方法,当然set方法的命名也是有规范的,那就是要set+类名,这里即是setTestBean。
package com.jack; /** * @author Jack Zhang * @version vb1.0 * @Email [email protected] * @Date 2012-5-1 */ public class TestAction { private TestBean testBean; public void setTestBean(TestBean testBean) { this.testBean = testBean; } public String execute() { testBean.getCode(); return "json"; } }
然后再更改配置文件:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="testBean" class="com.jack.TestBean" scope="prototype"/> <bean id="testAction" class="com.jack.TestAction" scope="prototype"autowire="byName"/> </beans>
有的人可能还会嫌麻烦,因为这样,每一个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" xmlns:p="http://www.springframework.org/schema/p" default-autowire="byName" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="testBean" class="com.jack.TestBean" scope="prototype"/> <bean id="testAction" class="com.jack.TestAction" scope="prototype"/> </beans>
Okay,问题完美解决。。。。。。。。。