Spring装配Bean的三种主要方案

这里说的Bean可不是豆子哦,是组件的意思,也就是哪些具有不同功能的类。将不同功能拆分成不同的组建,不仅能降低程序的耦合度,还能大大提升代码复用率。那么下面我们就来看看Spring装配Bean的三种主要方案吧!

1.隐式的Bean发现机制和自动装配

隐式的Bean发现机制,以其编写简单、实现方便的优点,成为企业级项目开发过程中使用最多的Bean装配机制。它主要是通过两步来实现Bean的装配和使用。

  • 组建扫描(component scanning):Spring 会自动发现应用上下文中所创建的bean。
  • 自动装配(autowiring):Spring 自动将满足类型或名称的Bean注入到使用到的类。
    上代码,下面声明了一个组建dog:
package com.cache.service;
import org.springframework.stereotype.Repository;
/**
 * <dl>
 * <dd>Description:功能描述</dd>
 * <dd>Company: 黑科技</dd>
 * <dd>@date:2016年8月11日 下午6:42:54</dd>
 * <dd>@author:Kong</dd>
 * </dl>
 */
@Component("dog")
public class Dog {
    public void call(){
        System.out.println("汪汪汪...");
}

再声明一个组建My,使用了组建Dog:

package com.cache.service;
import org.springframework.beans.factory.annotation.Autowired;
/**
 * <dl>
 * <dd>Description:功能描述</dd>
 * <dd>Company: 黑科技</dd>
 * <dd>@date:2016年8月11日 下午6:42:22</dd>
 * <dd>@author:Kong</dd>
 * </dl>
 */
@Component("my")
public class My {
    @Autowired(required=true)
    private Dog dog;
    
    public void shout(){
        dog.call();
    }
}

不过组建扫描默认是不启动的,所以我们要配置一下Spring,让它去寻找含有注解@Respository的类,然后为他们创建Bean。

package com.cache.service;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
 * <dl>
 * <dd>Description:功能描述</dd>
 * <dd>Company: 黑科技</dd>
 * <dd>@date:2016年8月11日 下午6:49:55</dd>
 * <dd>@author:Kong</dd>
 * </dl>
 * @ComponentScan(basePackages="com.cache")
 * @ComponentScan(basePackages={"com.package1","com.package2"})
 * @ComponentScan(basePackageClasses={Dog.class,My.class})
 * 以上是三种指定扫描包的方式
 */
@Configuration
//@ComponentScan(basePackages="com.cache")
//@ComponentScan(basePackages={"com.package1","com.package2"})
@ComponentScan(basePackageClasses={Dog.class,My.class})
public class MyConfig {

}

如果你习惯于使用XML进行组件扫描,那么可以使用Spring context命名空间的 <context:component-scan>元素。

<?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"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:task="http://www.springframework.org/schema/task"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:cache="http://www.springframework.org/schema/cache"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/cache
        http://www.springframework.org/schema/cache/spring-cache.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
    <!-- 自动扫描 --> <!-- 自动扫描指定的包中的类上的注解 -->
    <context:component-scan base-package="com.cache"/>
</beans>

做完这些之后就能使用注入到Spring容器中的Bean了。

2.在Java代码中进行显式装配

通过隐式扫描和自动装配实现Spring的自动配置的方式固然是方便快捷的,但是有些时候自动装配是行不通的,比如,需要使用到第三方库中的组件,这时候是没有办法在第三方类中添加@Component@Autowired注解的,所以这个时候要使用到JavaConfig或Xml的方式进行组件配置了,下面我们先说一下使用JavaConfig的方式配置组件。

package com.cache.service;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * <dl>
 * <dd>Description:功能描述</dd>
 * <dd>Company: 黑科技</dd>
 * <dd>@date:2016年8月11日 下午6:49:55</dd>
 * <dd>@author:Kong</dd>
 * </dl>
 */

@Configuration
// @ComponentScan(basePackages="com.cache")
// @ComponentScan(basePackages={"com.package1","com.package2"})
// @ComponentScan(basePackageClasses={Dog.class,My.class})
public class MyConfig {

    @Bean(name = "dog")
    public Dog dog() {
        return new Dog();
    }

    /**
     * 通过构造器注入方式注入
     * @return
     */
    //@Bean(name = "my")
    //public My my() {
    //  return new My(dog());
    //}

    /**
     * 通过get注入方式注入
     * @param dog
     * @return
     */
    @Bean
    public My my(Dog dog) {
        My my = new My(dog);
        my.setDog(dog);
        return my;
    }

}

3. 在XML中进行显示装配

Spring使用XMl装配Bean,已经有很久的历史了,曾经xml是主要装配bean的方式,但现在使用JavaConfig方式装配Bean很受提倡。现在很多企业还是比较习惯使用XML装配组件,下面我们就简单介绍一下使用XML装配Bean的实现吧。

  • 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"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:cache="http://www.springframework.org/schema/cache"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/cache
        http://www.springframework.org/schema/cache/spring-cache.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"
    default-lazy-init="true">


</beans>

<beans></beans>标签中可以声明其他的bean和配置。
声明一个简单的bean:
<bean id="dog" class="com.cache.service.Dog" />

  • 借助构造器注入初始化bean

Spring中可以使用<constructor-arg>元素和c命名空间对bean进行构造器注入参数:

<bean id="my" class="com.cache.service.My">
  <constructor-arg ref="dog"/>
  <constructor-arg value="Hello World"/>
</bean>
<bean id="my" class="com.cache.service.My"
    c:dog-ref="dog" 
    c:_title="Hello World"/>

也可以使用变量在构造器参数列表中的位置进行注入:

<bean id="my" class="com.cache.service.My"
    c:_0="haha" 
    c:_1="Hello World"/>
  • 装配集合
<bean id="my" class="com.cache.service.My">
  <constructor-arg ref="dog"/>
  <constructor-arg value="Hello World"/>
  <constructor-arg>
    <list>
      <value>one</value>
      <value>two</value>
      <value>three</value>
      <value>four</value>
    </list>
  </constructor-arg>
  <constructor-arg>
    <set>
      <value>one</value>
      <value>two</value>
      <value>three</value>
      <value>four</value>
    </set>
  </constructor-arg>
  <constructor-arg>
     <map>
        <entry key="shiro.session.uncache" value-ref="sessionUncacheService"/>
        <entry key="wxCfgReloadChannel"> 
            <bean class="com.rocoinfo.rocomall.rest.admin.wx.WxReloadConfigHandler"/>
        </entry>
     </map>
   </constructor-arg>
</bean>
  • 使用setter注入参数

setter注入是特别常用的注入属性的方式,它的基本语法如下:

<bean id="my" class="com.cache.service.My">
    <property name="dog" ref="dog" />
</bean>

同样的setter注入也有替代的命名空间,那就是p元素:

<bean id="my" class="com.cache.service.My" 
    p:dog-ref="dog" />

sertter方式注入字面量、list、set、map:

<bean id="my" class="com.cache.service.My">
    <property name="dog" ref="dog" />
    <property name="title" value="Hello World"/>
    <property name="statusList">
        <list>
          <value>one</value>
          <value>two</value>
          <value>three</value>
          <value>four</value>
        </list>
     </property>
     <property name="prodList">
        <set>
          <value>one</value>
          <value>two</value>
          <value>three</value>
          <value>four</value>
        </set>
     </property>
     <property name="wordbook">
        <map>
          <entry key="one" value="西游记"/>
          <entry key="one" value="红楼梦"/>
          <entry key="one" value="水浒传"/>
          <entry key="one" value="三国演义"/>
        </map>
     </property>
</bean>

当然也可以借助<util></util>元素将list、set、map等在bean外声明:

<util:list id="nameList">
    <value>one</value>
    <value>two</value>
    <value>three</value>
    <value>four</value>
</util:list>

下面四<util>中的子元素:

元素 描述
<util:content> 引用某个类型的public static 域,并将其暴露为bean
<util:list> 创建一个java.util.List类型的bean,其中包含值或引用
<util:set> 创建一个java.util.Set类型的bean,其中包含值或引用
<util:map> 创建一个java.util.Map类型的bean,其中包含值或引用
<util:propertys> 创建一个java.util.Properties类型的bean
<util:property-path> 引用一个bean的属性或内嵌属性,并将其暴露为一个bean

4. 混合配置

  • Javaconfig中导入其他JavaConfig或XML

使用@Import注解导入其他JavaConfig中的配置
使用@ImportResource导入XML中的配置

package com.cache.service;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.ImportResource;

/**
 * <dl>
 * <dd>Description:功能描述</dd>
 * <dd>Company: 黑科技</dd>
 * <dd>@date:2016年8月11日 下午9:04:20</dd>
 * <dd>@author:Kong</dd>
 * </dl>
 */
@Configuration
@Import(MyConfig.class)//引用其他JavaConfig中的Bean
//@ImportResource("classpath:my-config.xml")//引用XML中配置的Bean
public class MyConfig2 {

    @Bean(name="my")
    public My my(Dog dog){
        
        My my = new My();
        my.setDog(dog);
        return my;
        //return new My(dog);
    }
}
  • XML中引入其他XML配置和将JavaConfig类引入XML

使用<import resource="applicationContext-shiro.xml"/>引入其他XML配置

<import resource="applicationContext-shiro.xml"/>

<bean class="com.cache.Myconfig"/>

通常企业级开发过程中会将两个或更多的装配类或XML文件组合起来,然后使用组建扫描(<context:component-scan>或@ComponentScan)将bean装配到Spring上下文中。到此我们就学完了Spring最核心、也是工作中使用最多的负责管理bean生命周期的Spring容器。

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

推荐阅读更多精彩内容