二、Spring容器中的Bean

Bean的基本定义和Bean的别名:


<beans.../>元素是Spring配置文件的根元素,该元素可以指定如下属性:

  • default-lazy-init:指定该元素下所有的Bean默认的延迟初始化行为。
  • default-merge:指定该元素下所有的Bean默认的merge行为。
  • default-autowire:指定该元素下所有的Bean默认的自动装配行为。
  • default-autowire-candidates:指定该元素下所有的Bean默认是否作为自动装配的候选Bean。
  • default-init-method:指定该元素下所有的Bean默认的初始化行为。
  • default-destory-method:指定该元素下所有Bean默认回收方法。

<beans.../>元素所指定的属性都可以在每个<bean.../>子元素中指定,将属性名去掉default即可。区别在于<bean.../>元素下指定的行为值对特定的Bean起作用。<bean.../>元素是<beans.../>元素的子元素,<beans.../>元素可以包含多个<bean.../>子元素,每个<bean.../>元素定义一个Bean,每个Bean对应Spring中的一个Java实例。

为Bean指定别名:

  • 定义<bean.../>元素是通过为name属性指定别名。
  • 通过<alias.../>元素为已有的Bean指定别名。
<!--下面为该Bean指定三个别名:123,abc,@123-->
<bean id="persion" class="..." name="123,abc,@123"/>
<alias name="persion" alias="jack"/>
<alias name="jack" alias="jackee"/>

容器中Bean的作用域:

Spring支持的5种作用域:

  • singleton:singleton作用域的Bean在整个IOC容器中只生成一个实例。
  • prototype:每次通过容器的getBean()方法获取prototype作用域的Bean时,都将产生一个新的Bean实例。
  • request:在同一次HTTP请求中request作用域只产生一个实例。
  • session:在同一次HTTP会话中session作用域只产生一个实例。
  • global session:每个全局的HTTP Session对应一个Bean实例。

实例:
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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd" >
    <!-- 配置一个singleton Bena实例 -->
   <bean id="chinese1" class="entity.Chinese"/>
   <!-- 配置一个prototype Bean实例 -->
   <bean id="chinese2" class="entity.Chinese" scope="prototype"/>
   
   <bean id="date" class="java.util.Date"/>
</beans>

BeanTest.java

package test;

import inter.Persion;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class BeanTest {

    public static void main(String[] args) throws Exception
    {
        //创建spring容器
        ApplicationContext ctx=new ClassPathXmlApplicationContext("beans.xml");
        //判断两次请求singleton作用域的Bean实例是否相等
        System.out.println(ctx.getBean("chinese1")==ctx.getBean("chinese1"));
        //判断两次请求prototype作用域的Bean实例是否相等
        System.out.println(ctx.getBean("chinese1")==ctx.getBean("chinese2"));
        System.out.println(ctx.getBean("date"));
        Thread.sleep(1000);
        System.out.println(ctx.getBean("date"));
    }
    
}

输出

true
false
Fri Mar 03 20:59:54 CST 2017
Fri Mar 03 20:59:54 CST 2017

request和session作用域只在Web应用中才有效,并且必须在Web应用中添加额外的配置才会生效。必须将HTTP请求对象绑定到为该请求提供服务的线程上。

对于Servlet2.4,在web.xml中增加Listener使request作用域生效:

<listener>
  <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

配置依赖:

通常不建议使用配置文件管理Bean的基本类型的属性值,通常使用配置文件管理容器中Bean与Bean之间的依赖关系。
BeanFactory和ApplicationContext实例化容器中的Bean的时机不同,前者等到需要Bean实例时才执行初始化,后者在容器创建ApplicationContext实例时,会预先初始化容器中所有的singleton Bean。

Spring允许通过如下元素为setter方法、构造器参数指定参数值:

  • value
  • ref
  • bean
  • list、set、map、props

使用自动装配注入合作者Bean:

  • no:不使用自动装配。
  • byName:根据setter方法名进行自动装配。
  • byType:根据setter方法的形参类型来自动装配。
  • constructor:与byType类似,区别是用于自动匹配构造器的参数。
  • autodetect:Spring容器根据Bean内部结构,自行决定使用constructor或byType策略。

注入嵌套Bean:

如果某个Bean不想被Spring容器直接访问,则可以使用嵌套Bean。把<bean.../>配置成<property.../>或者<constructor-args.../>的子元素,那么该<bean.../>元素配置的Bean仅仅作为setter注入、构造注入的参数,这种Bean就是嵌套Bean。

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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd" >
   <!-- 使用嵌套Bean作为参数 -->
   <bean id="chinese" class="entity.Chinese">
     <property name="axe" >
     <!-- 嵌套Bean配置对象仅作为setter方法的参数,嵌套Bean不能被容器访问,因此无需指定id属性 -->
        <bean class="entity.StoneAxe"/>
     </property>
   </bean>
</beans>

嵌套Bean提高了程序的内聚性,但是降低了程序的灵活性,只有在完全确定了Spring容器无需访问某个Bean时才考虑用嵌套Bean来配置该Bean。

随着参数的不同,Spring通过setter或者有参数的构造器传入参数时,Spring配置文件也不同:

  • 形参类型是基本类型、String、Date等,直接使用value指定字面值即可。
  • 形参类型是复合类(Persion、Axe)时,1、使用ref应用容器中的已配置的Bean,2、使用<bean.../>元素来配置一个嵌套Bean。

注入集合值:

Chinese.java

package entity;

import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

import inter.Axe;
import inter.Persion;

public class Chinese implements Persion {

    //集合类型的成员变量
    private List<String> schools;
    private Map scores;
    private Map<String,Axe> phaseAxe;
    private Properties health;
    private Set axes;
    private String[] books;
    public Chinese()
    {
        System.out.println("Spring实例化主调Bean:Chinese实例。。。。");
    }
    @Override
    public void useAxe() {
        // TODO Auto-generated method stub
        
    }
    public void setSchools(List<String> schools) {
        this.schools = schools;
    }
    public void setScores(Map scores) {
        this.scores = scores;
    }
    public void setPhaseAxe(Map<String, Axe> phaseAxe) {
        this.phaseAxe = phaseAxe;
    }
    public void setHealth(Properties health) {
        this.health = health;
    }
    public void setAxes(Set axes) {
        this.axes = axes;
    }
    public void setBooks(String[] axes) {
        this.books = books;
    }
    public void test()
    {
        System.out.println(schools);
        System.out.println(scores);
        System.out.println(phaseAxe);
        System.out.println(health);
        System.out.println(axes);
        System.out.println(java.util.Arrays.toString(books));
    }

}

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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd" >
   <bean id="chinese" class="entity.Chinese">
     <property name="schools" >
        <!-- 为调用setSchools()方法配置List集合作为参数值 -->
        <list>
          <value>小学</value>
          <value>中学</value>
          <value>大学</value>
        </list>
     </property>
     <property name="scores" >
        <!-- 为调用setScores()方法配置Map集合作为参数值 -->
        <map>
         <entry key="数学" value="87"/>
         <entry key="语文" value="87"/>
         <entry key="英语" value="87"/>
        </map>
     </property>
     <property name="phaseAxes" >
        <!-- 为调用setPhaseAxes()方法配置Map集合作为参数值 -->
        <map>
        <!-- 每个entry配置一个value-ref -->
         <entry key="原始社会" value-ref="stoneAxe"/>
         <entry key="农业社会" value-ref="steelAxe"/>
        </map>
     </property>
     <property name="health" >
        <!-- 为调用setHealth()方法配置Properties集合作为参数值 -->
        <props>
           <prop key="血压">正常</prop>
           <prop key="升高">175</prop>
        </props>
     </property>
    <!-- .............. -->
   </bean>
</beans>

使用<list.../>、<set..../>、<map.../>等元素配置集合类型的参数值时,还需要配置集合元素。由于集合元素又可以是基本类型值 ,应用容器中的其他Bean、嵌套Bean或集合属性,所以<list.../>、<set..../>、<map.../>元素又可以接收如下子元素:

  • value
  • ref
  • bean
  • list、set、map、props。

<key.../>的子元素又可以是value、ref、 bean、 list、 set、 map、 props。

组合属性:

使用配置文件形如foo.bar.name的属性设置参数值,为Bean的组合设置参数值时,除了最后一个属性之外,其他属性都不能为空。组合属性只有最后一个属性使用setter方法,前面的个属性都使用getter方法。

Spring中的Bean和JavaBean:

Spring中的Bean应满足如下原则:

  • 尽量为每个Bean提供无参数的构造函数。
  • 接受构造注入的Bean应该提供对应的、带参数的构造方法。
  • 接受设值注入的Bean应该提供对应的setter方法。

传统的JavaBean和Spring中的Bean的区别:

  • 用处不同:传统的JavaBean更多是作为值传递参数,Spring的Bean无所不包,几乎所有的应用组件都被称为Bean。
  • 写法不同:传统的JavaBean作为值对象,要求每个属性都提供getter和setter方法,Spring中的Bean在进行设值注入时只需要提供属性的setter方法。
  • 生命周期不同:传统的JavaBean作为值传递对象,不接受任何容器管理其生命周期,Spring中的Bean有Spring容器管理其生命周期。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容