装配Bean

Bean -- 一种表达实体和信息的规范,便于封装重用。

Bean有以下特点:

1、所有属性为private    2、提供默认构造方法    3、提供Setter和Getter    4、实现Serializable接口

Spring装配Bean三种方式: XML显式配置、Java显式配置、自动装配。


一、自动装配

Spring通过以下两个角度来实现自动化装配

1、组件扫描:Spring会自动发现应用上下文中所创建的bean

2、自动装配:Spring自动满足bean之间的依赖

接下来以一个CD播放器的例子来演示自动装配

首先定义媒体播放器和CD两个接口

package soundsystem;

public interface MediaPlayer {

void play();

}

package soundsystem;

public interface CompactDisc {

void play();

}

定义CD播放器类实现媒体播放器接口

package soundsystem;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Component;

@Component

public class CDPlayer implements MediaPlayer{

private CompactDisccd;

@Autowired

    public CDPlayer(CompactDisc cd){

this.cd = cd;

}

@Override

    public void play() {

cd.play();

}

}

@Component注解表明该类会作为组件类,并告知Spring为这个类创建bean

@Autowired注解表明当Spring创建CDPlayer bean 的时候,会通过这个构造器来进行实例化并且会传入一个可设置给CompactDisc类型的bean。

@Autowired注解可以用在类的任何方法上,还可以用于成员变量上。@Inject源于Java依赖注入规范,在大多场景下可与@Autowired互换。


然后定义一个SgtPeppers类,它实现了CompactDisc接口,也是一个组件类。

package soundsystem;

import org.springframework.stereotype.Component;

@Component

public class SgtPeppers implements CompactDisc{

private String title ="Sgt. Pepper's Lonely Hearts Club Band";

private String artist ="The Beatles";

@Override

    public void play() {

System.out.println("Playing "+title+" by "+artist);

}

}

最后定义一个CDPlayer配置类

package soundsystem;

import org.springframework.context.annotation.*;

@Configuration

@ComponentScan

public class CDPlayerConfig {

}

@Configuration代表这是一个配置类

@ComponentScan表示启用组件扫描

组件扫描可以在一个CD播放器一张CD的时候正常工作,但是在有两张CD的时候就不能正常工作了,因为它不知道应该播放哪一张CD,这里我们只有一张披头士的CD,关于多张CD的情况留到后面处理。 

我们也可以用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:c="http://www.springframework.org/schema/c"

      xmlns:p="http://www.springframework.org/schema/p"

      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">

<context:component-scan base-package="soundsystem" />

</beans>

<context:component-scan base-package="soundsystem" />表示会在soundsystem这个包内找合适的bean注入到CDplayer

现在定义CDPlayerTest类测试一下

package soundsystem;

import static org.junit.Assert.*;

import org.junit.Rule;

import org.junit.Test;

import org.junit.contrib.java.lang.system.StandardOutputStreamLog;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.test.context.ContextConfiguration;

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(classes = CDPlayerConfig.class)

public class CDPlayerTest {

@Rule

    public final StandardOutputStreamLoglog =new StandardOutputStreamLog();

@Autowired

    private MediaPlayerplayer;

@Autowired

    private CompactDisccd;

@Test

    public void cdShouldNotNull(){

assertNotNull(cd);

}

@Test

    public void play(){

player.play();

assertEquals("Playing Sgt. Pepper's Lonely Hearts Club Band by The Beatles\n",log.getLog());

}

}

@ContextConfiguration(classes = CDPlayerConfig.class)会使用CDPlayerConfig这个类来配置应用上下文。

下面试试使用XML配置

package soundsystem;

import static org.junit.Assert.*;

import org.junit.Rule;

import org.junit.Test;

import org.junit.contrib.java.lang.system.StandardOutputStreamLog;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.test.context.ContextConfiguration;

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations ="classpath:soundsystem.xml")

public class CDPlayerXMLConfigTest {

@Rule

    public final StandardOutputStreamLoglog =new StandardOutputStreamLog();

@Autowired

    private MediaPlayerplayer;

@Autowired

    private CompactDisccd;

@Test

    public void cdShouldNotNull(){

assertNotNull(cd);

}

@Test

    public void play(){

player.play();

assertEquals("Playing Sgt. Pepper's Lonely Hearts Club Band by The Beatles\n",log.getLog());

}

}

@ContextConfiguration(locations ="classpath:soundsystem.xml")会使用soundsystem.xml来配置应用上下文。

二、Java显式配置

媒体播放器和CD接口保持不变

接下来看看CD播放器类与自动装配有什么不同之处

package soundsystem;

import org.springframework.beans.factory.annotation.Autowired;

public class CDPlayer implements MediaPlayer {

private CompactDisccd;

  @Autowired

  public CDPlayer(CompactDisc cd) {

this.cd = cd;

  }

public void play() {

cd.play();

  }

}

与自动装配比较可以发现类声明上面少了@Component注解 我们没有将CDPlayer声明为一个组件类

SgtPeppers类也没有@Component注解

重点来看看CDplayerConfig类

package soundsystem;

import org.springframework.context.annotation.*;

@Configuration

public class CDPlayerConfig {

@Bean

    public CompactDisc compactDisc(){

return new SgtPeppers();

    }

@Bean

    public CDPlayer cdPlayer(CompactDisc cd){

return new CDPlayer(cd);

    }

}

这里没有@ComponentScan注解然后在配置类中自己定义了两个bean从第一个bean可以看到如果需要注入CompactDisc bean的时候注入的是SgtPeppers类对象,需要注入CDPlayer bean 时注入的时候注入的是CdPlayer对象。

总结一下:Java显式配置与自动装配主要区别在配置类上,Java配置需要显示地声明bean,自动装配配置类有@ComponentScan注解,它会自动扫描带有@Component注解的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:c="http://www.springframework.org/schema/c"

  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

  <bean id="compactDisc" class="soundsystem.SgtPeppers" />

  <bean id="cdPlayer" class="soundsystem.CDPlayer"

        c:cd-ref="compactDisc" />

<bean id="compactDisc" class="soundsystem.SgtPeppers" />

@Bean

    public CompactDisc compactDisc(){

return new SgtPeppers();

    }

上述的一行XML配置和上面的一段Java配置起到的作用是一样的。


XML中参数的声明是由<constructor-arg>标签来实现,想要注入一个集合可以使用<list>标签包裹集合内所有项

使用<value>标签包裹集合内的一项。

<bean id="compactDisc"

      class="soundsystem.BlankDisc"

      c:_0="Sgt. Pepper's Lonely Hearts Club Band"

      c:_1="The Beatles">

c:_0代表构造器的第一个参数,c:_1代表构造器的第二个参数。

四、混合配置

package soundsystem;

import org.springframework.context.annotation.*;

@Configuration

@Import(CDPlayerConfig.class)

@ImportResource("classpath:cd-config.xml")

public class SoundSystemConfig {

}

加粗的两个注解从一个Java配置类和一个XML文档加载上下文。

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

推荐阅读更多精彩内容

  • 本章内容: 声明Bean 构造器注入和Setter方法注入 装配Bean 控制bean的创建和销毁 任何一个成功的...
    谢随安阅读 1,637评论 0 9
  • 通过之前的两篇我们能在本地搭建单一和集群两种方式的dubbo服务,这篇我们来看 springmvc+spring+...
    安琪拉_4b7e阅读 2,149评论 0 6
  • 依赖注入对象的依赖关系由系统中负责协调各个对象的第三方组件(Spring)在创建时进行设定。一个对象只通过接口来表...
    米都都阅读 190评论 0 0
  • Spring容器负责创建应用程序中的bean并通过DI来协调这些对象之间的关系,我们需要做的就是告诉Spring要...
    xdoyf阅读 495评论 0 1
  • 昨晚牙疼一夜,咬了两颗花椒睡着了。谁这么有才,牙疼让咬花椒,花椒不能止疼,却可以让半边脸麻木。麻木中又有隐隐的疼,...
    小小草85阅读 321评论 0 1