[toc]

1. bean的属性赋值

1.1 依赖注入的方式

1. 1.1 通过bean的setXxx()方法赋值
1
2
3
4
5
6
<bean id="student" class="cn.justweb.pojo.Student">
<!--使用property子元素为bean的属性赋值-->
<property name="name" value="涛哥"></property>
<property name="sex" value="男"></property>
<property name="address" value="南京"></property>
</bean>
1.1.2 通过bean的构造器赋值

Spring自动匹配合适的构造器

1
2
3
4
5
6
<!--注意这个Student要存在带参数的构造器-->
<bean id="student" class="cn.justweb.pojo.Student">
<constructor-arg value="taoge"></constructor-arg>
<constructor-arg value="nan"></constructor-arg>
<constructor-arg value="nanjing"></constructor-arg>
</bean>

通过索引值指定参数位置

1
2
3
4
5
6
<!--通过索引值指定参数位置-->
<bean id="student" class="cn.justweb.pojo.Student">
<constructor-arg value="nanjing" index="2"/>
<constructor-arg value="nan" index="1"/>
<constructor-arg value="涛哥" index="0"/>
</bean>

通过类型区分重载的构造器

1
2
3
4
5
6
    <!--通过类型区分重载的构造器-->
<bean id="student" class="cn.justweb.pojo.Student">
<constructor-arg value="nanjing" index="2" type="java.lang.String"></constructor-arg>
<constructor-arg value="nan" index="1" type="java.lang.String"></constructor-arg>
<constructor-arg value="taoge" index="0" type="java.lang.String"></constructor-arg>
</bean>

1.2 value可以使用的值

  • 若字面值中包含特殊字符,可以使用<![CDATA[]]>把字面值包裹起来。

  • null

    1
    2
    3
    <property name= "address">
    <null/>
    </property>
  • 外部已声明的bean、引用其他的bean

    1
    2
    3
    <bean id="shop" class="com.justweb.spring.bean.Shop" >
    <property name= "student" ref ="student"/>
    </bean >
  • 给bean的级联属性赋值

  • 内部bean

    1
    当bean实例仅仅给一个特定的属性使用时,可以将其声明为内部bean。内部bean声明直接包含在<property><constructor-arg>元素里,不需要设置任何id或name属性内部bean不能使用在任何其他地方。

1.3 p的命名空间

  1. 为了简化XML文件的配置,越来越多的XML文件采用属性而非子元素配置信息。Spring
  2. 从2.5版本开始引入了一个新的p命名空间,可以通过元素属性的方式配置Bean 的属性。使用p命名空间后,基于XML的配置方式将进一步简化。
1
2
3
4
5
<!--使用之前先加入约束-->
xmlns:p="http://www.springframework.org/schema/p"

<bean id="student" class="cn.justweb.pojo.Student" p:name="涛哥" p:sex="nan" p:address="南京"></bean>

1.4 集合属性

在Spring中可以通过一组内置的XML标签来配置集合属性,例如:

1.4.1 数组和List
  1. 配置java.util.List类型的属性,需要指定标签,在标签里包含一些元素。这些标签 可以通过指定简单的常量值,通过指定对其他Bean的引用。通过指定内置bean定义。通过指定空元素。甚至可以内嵌其他集合。
  2. 数组的定义和List一样,都使用元素。
  3. 配置java.util.Set需要使用标签,定义的方法与List一样。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
     <bean id="shop" class="com.justweb.spring.bean.Shop" >

           <property name"categoryList">
               <!-- 以字面量为值的List集合 -->
               <list>
                    <value> 历史</value >
                    <value> 军事</value >
               </list>
           </property>

           <property name"bookList">
               <!-- 以bean的引用为值的List集合 -->
               <list>
                    <ref bean"book01"/>
                    <ref bean"book02"/>
               </list>
           </property>
     </bean >
1.4.2 Map
  1. Java.util.Map通过标签定义,标签里可以使用多个作为子标签。每个条目包含一个键和一个值。
  2. 必须在标签里定义键。
  3. 因为键和值的类型没有限制,所以可以自由地为它们指定元素。
  4. 可以将Map的键和值作为的属性定义:简单常量使用key和value来定义;bean引用通过key-ref和value-ref属性定义。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<bean id="cup" class="com.justweb.spring.bean.Cup">
<bean id="cup" class="com.justweb.spring.bean.Cup">
<property name="bookMap">

<map>

<entry>

<key>
<value>bookKey01</value>
</key>

<ref bean="book01"/>

</entry>

<entry>

<key>
<value>bookKey02</value>
</key>

<ref bean="book02"/>

</entry>

</map>

</property>
</bean>
1.4.3 集合类型的bean
  1. 如果只能将集合对象配置在某个bean内部,则这个集合的配置将不能重用。我们需要 将集合bean的配置拿到外面,供其他bean引用。
  2. 配置集合类型的bean需要引入util名称空间
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<util:list id="bookList">
<ref bean="book01"/>
<ref bean="book02"/>
<ref bean="book03"/>
<ref bean="book04"/>
<ref bean="book05"/>
</util:list>

<util:list id="categoryList">
<value>编程</value>
<value>极客</value>
<value>相声</value>
<value>评书</value>
</util:list>