2.spring的IOC容器注入(spring笔记)

主要内容:

  • 普通属性注入
  • 自定义属性编辑器
  • 公共属性注入

一、普通属性注入

实体类:
Bean1.java

private String strValue;
private int intValue;
private List listValue;
private Set setValue;
private String[] arrayValue;
private Map mapValue;
private Date dateValue;
相关getter和setter方法

Bean2.java

private Bean3 bean3;
private Bean4 bean4;
private Bean5 bean5;

Bean3.java

private int id;
private String name;
private String password;

Bean4.java

private int id;
private String name;

Bean5.java

private int age;

配置:applicationContext-beans.xml

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

    <bean id="bean1" class="com.bjsxt.spring.Bean1">
        <property name="strValue" value="Hello" />
        <!-- <property name="intValue" value="123"/> -->
        <property name="intValue">
            <value>123</value>
        </property>
        <property name="listValue">
            <list>
                <value>list1</value>
                <value>list2</value>
            </list>
        </property>
        <property name="setValue">
            <set>
                <value>set1</value>
                <value>set2</value>
            </set>
        </property>
        <property name="arrayValue">
            <list>
                <value>array1</value>
                <value>array2</value>
            </list>
        </property>
        <property name="mapValue">
            <map>
                <entry key="k1" value="v1" />
                <entry key="k2" value="v2" />
            </map>
        </property>
        <property name="dateValue">
            <value>2008-08-15</value>
        </property>
    </bean>
</beans>

说明:

  • 1.spring允许有多个配置文件,在使用的时候可以这样:
    BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext-*.xml");可以看到这样使用时配置文件名的前面部分需要相同。
  • 2.在配置时如果使用value属性则记得加上双引号,如果使用value标签则不需要。

测试:

package com.bjsxt.spring;
import junit.framework.TestCase;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class InjectionTest extends TestCase {
    
    private BeanFactory factory;
    
    @Override
    protected void setUp() throws Exception {
        factory = new ClassPathXmlApplicationContext("applicationContext-*.xml");   
    }

    public void testInjection1() {
        Bean1 bean1 = (Bean1)factory.getBean("bean1");
        
        System.out.println("bean1.strValue=" + bean1.getStrValue());
        System.out.println("bean1.intValue=" + bean1.getIntValue());
        System.out.println("bean1.listValue=" + bean1.getListValue());
        System.out.println("bean1.setValue=" + bean1.getSetValue());
        System.out.println("bean1.arrayValue=" + bean1.getArrayValue());
        System.out.println("bean1.mapValue=" + bean1.getMapValue());
        System.out.println("bean1.dateValue=" + bean1.getDateValue());
    }
    
    public void testInjection2() {
        Bean2 bean2 = (Bean2)factory.getBean("bean2");
        
        System.out.println("bean2.bean3.id=" + bean2.getBean3().getId());
        System.out.println("bean2.bean3.name=" + bean2.getBean3().getName());
        System.out.println("bean2.bean3.password=" + bean2.getBean3().getPassword());
        System.out.println("bean2.bean4.id=" + bean2.getBean4().getId());
        System.out.println("bean2.bean4.name=" + bean2.getBean4().getName());
        System.out.println("bean2.bean5.age=" + bean2.getBean5().getAge());
    }
    
}

说明:

  • 1.首先注意继承TestCase类然后覆写setUp方法。
  • 2.对于Bean1类前面所有属性这样配置都是没有问题的,也就是说对于一些基本数据类型,spring是可以自动转换的,但是如果是日期类型,则配置像:
<property name="dateValue">
    <value>2008-08-15</value>
</property>
```是不能自动转换的,所以这里我们需要像struts2中一样,自己写一个属性编辑器。

#二、自定义属性编辑器
* 自定义属性编辑器,spring配置文件中的字符串转换成相应的对象进行注入,spring已经有内置的属性编辑器,我们可以根据需求自己定义属性编辑器。

* 如何定义属性编辑器?
  * 继承```PropertyEditorSupport```类,覆写```setAsText()```方法,参见:```UtilDatePropertyEditor.java```
  * 将属性编辑器注册到spring中,参见:```applicationContext-editor.xml```

* 注意:配置的时候```CustomEditorConfigurer```的属性名不要写错,不能随意写,名字是```customEditors```。

* 注意:一定不要将日期格式属性的settter方法忘记,这是注入的关键。

**```UtilDatePropertyEditor.java```**

package com.bjsxt.spring;
import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**

  • java.util.Date属性编辑器
    */
    public class UtilDatePropertyEditor extends PropertyEditorSupport {

    private String format="yyyy-MM-dd";

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
    System.out.println("UtilDatePropertyEditor.saveAsText() -- text=" + text);

     SimpleDateFormat sdf = new SimpleDateFormat(format);
     try {
         Date d = sdf.parse(text);
         this.setValue(d);
     } catch (ParseException e) {
         e.printStackTrace();
     }
    

    }

    public void setFormat(String format) {
    this.format = format;
    }
    }

**配置:```applicationContext-editor.xml.java```**

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

<bean id="customEditorConfigurer" class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="java.util.Date">
<bean class="com.bjsxt.spring.UtilDatePropertyEditor">
<property name="format" value="yyyy-MM-dd"/>
</bean>
</entry>
</map>
</property>
</bean>

<!-- 
<bean id="utilDatePropertyEditor" class="com.bjsxt.spring.UtilDatePropertyEditor"></bean>
 -->

</beans>

**说明:**
* 可以看到对于日期的转换方法和以前我们平时使用的转换方法是一样的。这里需要注意的是转换完之后需要使用方法setValue将转换后的值返回回去。
* 配置的时候可以使用外部bean,然后使用entry标签的value属性给配置进去,但是我们也可以使用内部bean,内部bean就只能被其所在bean使用了,内部bean不需要id。
* 对于日期格式我们可以在类中写死,当然我们也可以将日期格式让spring帮我们注入进去,前提是我们提供setter方法,此时在自定义编辑器类中日期格式就不需要给值了。

#三、公共属性的注入
如果有一个类```Bean2.java```,其包含三个属性,这三个属性分别是```Bean3.java、Beean4.java、Bean5.java```。

**```Bean2.java```**

private Bean3 bean3;
private Bean4 bean4;
private Bean5 bean5;

**```Bean3.java```**

private int id;
private String name;
private String password;

**```Bean4.java```**

private int id;
private String name;

**```Bean5.java```**

private int age;

如果按照一般方式进行配置:
**```applicationContext-beans.xml```**

<bean id="bean2" class="com.bjsxt.spring.Bean2">
<property name="bean3" ref="bean3" />
<property name="bean4">
<ref bean="bean4" />
</property>
<property name="bean5" ref="bean5" />
</bean>

<bean id="bean3" class="com.bjsxt.spring.Bean3">
    <property name="id" value="1000" />
    <property name="name">
        <value>Jack</value>
    </property>
    <property name="password" value="123" />
</bean>
<bean id="bean4" class="com.bjsxt.spring.Bean4">
    <property name="id" value="1000" />
    <property name="name" value="Jack" />
</bean>

<bean id="bean5" class="com.bjsxt.spring.Bean5">
    <property name="age" value="20" />
</bean>
**说明:**这里我们可以发现```Bean3.java、Bean4.java```的属性有公共部分,这里我们只是距离,所以公共部分不是很多,那当两个类的公共部分很多时如果我们都按照普通方式那样配置显然很多余,这里我们需要配置一些公共属性。

**```applicationContext-other.xml```**

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

<bean id="beanAbstract" abstract="true">
<property name="id" value="1000"/>
<property name="name" value="Jack"/>
</bean>

<bean id="bean3" class="com.bjsxt.spring.Bean3" parent="beanAbstract">
<property name="name" value="Tom"/>
<property name="password" value="123"/>
</bean>

<bean id="bean4" class="com.bjsxt.spring.Bean4" parent="beanAbstract"/>
</beans>

**说明:**可以看到我们将公共属性抽取出来,当然对于公共属性bean我们需要使用```abstract="true"```指明。而如果一个类要使用公共属性也需要使用```parent="beanAbstract"```指明,如果和公共属性中配置的值是一样的,那么就不需要再次配置,如果值有变化则需要重复配置其value,同时对于多出公共属性的属性还是需要额外配置的。

**最后:**这里只是简单介绍了一下容器注入,更详细的使用请参考文档。



















最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341

推荐阅读更多精彩内容