Spring Bean的装配

Spring bean 的装配方式总的来说有以下3种:基于xml配置文件的装配、基于注解的装配、基于命名空间的装配。三种装配方式各有优缺点,在实际的开发工作中,根据“约定优于配置”的信条,基于注解的装配方式比较受欢迎。下面介绍各种 装配方式

1、基于配置文件的装配方式

直接上配置文件:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://www.springframework.org/schema/beans

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

<!-- 基本数据类型集合依赖bean装配 -->

<bean id="simpleCollectionBean" class="spring.chapter10.loadbeanbyxml.SimpleCollectionBean">

<property name="list">

<list>

<value>list-value-1</value>

<value>list-value-2</value>

<value>list-value-3</value>

<value>list-value-4</value>

</list>

</property>

<property name="set">

<set>

<value>set-value-1</value>

<value>set-value-2</value>

<value>set-value-3</value>

<value>set-value-4</value>

</set>

</property>

<property name="map">

<map>

<entry key="map-key-1" value="map-value-1" />

<entry key="map-key-2" value="map-value-2" />

<entry key="map-key-3" value="map-value-3" />

<entry key="map-key-4" value="map-value-4" />

</map>

</property>

<property name="properties">

<props>

<prop key="properties-key-1">properties-value-1</prop>

<prop key="properties-key-2">properties-value-2</prop>

<prop key="properties-key-3">properties-value-3</prop>

<prop key="properties-key-4">properties-value-4</prop>

</props>

</property>

<property name="array">

<array>

<value>array-value-1</value>

<value>array-value-2</value>

<value>array-value-3</value>

<value>array-value-4</value>

</array>

</property>

</bean>

<!-- 复杂对象集合依赖Bean的装配 -->

<bean id="source1" class="spring.chapter9.ioc.Source">

<property name="fruit" value="橙子" />

<property name="sugar" value="少糖" />

<property name="size"  value="小杯" />

</bean>

<bean id="source2" class="spring.chapter9.ioc.Source">

<property name="fruit" value="苹果"/>

<property name="sugar" value="适量" />

<property name="size"  value="中杯" />

</bean>

<bean id="source3" class="spring.chapter9.ioc.Source">

<property name="fruit" value="橘子"/>

<property name="sugar" value="多糖" />

<property name="size"  value="大杯" />

</bean>

<bean id="juiceMaker" class="spring.chapter9.ioc.JuiceMaker">

<property name="shopName" value="贡茶" />

<property name="source"  ref="source1" />

</bean>

<bean id="objectCollectionBean" class="spring.chapter10.loadbeanbyxml.ObjectCollectionBean">

<property name="list">

<list>

<ref bean="source1"/>

<ref bean="source2" />

<ref bean="source3" />

</list>

</property>

<property name="map">

<map>

<entry key-ref="source1" value-ref="juiceMaker"/>

<entry key-ref="source2" value-ref="juiceMaker" />

<entry key-ref="source3" value-ref="juiceMaker" />

</map>

</property>

<property name="array">

<array>

<ref bean="source1" />

<ref bean="source2" />

<ref bean="source3" />

</array>

</property>

<property name="set">

<set>

<ref bean="source1" />

<ref bean="source2" />

<ref bean="source3" />

</set>

</property>

</bean>

</beans>

基于配置文件的装配方式如上,没什么需要细讲的东西,最后通过

ApplicationContext ctx = 

                                             new ClassPathXmlApplicationContext("classpath:spring-cfg.xml");

获取到ApplicationContext接口的实现类对象。

2、基于注解的装配方式

基于注解的装配方式需要一个注解配置类(和要装配的bean在同一个包路径下或者子包下)

这里我们新建一个配置类AnotationConfig,代码如下:

@ComponentScan(basePackages= {"spring.chapter10.loadbeanbyanotation"}, basePackageClasses= {Role.class})

public class AnotationConfig {

}

可以看到这个类其实并没有任何实际代码,起作用的是上面加粗的注解部分

basePackages指明要装载的bean的包路径或者父包路径,可以指定多个路径(要注意bean id是否重复)

basePackageClasses指定要装载的Bean(不指定默认装载所有的Bean)

要装载的Bean需要用@component注解

//也可简写为@Component("role")

@Component(value = "role")

public class Role {

@Value("administrator")

private String name;

@Value("default")

private String note;

//Spring会把字符串类型转换为Long型

@Value("1")

private Long id;

/**getter and setter*/

}

获取ApplicationContext接口实现对象:

ApplicationContext  ctx =

new AnnotationConfigApplicationContext(AnotationConfig.class);

上述的Bean的依赖都是基本数据类型比如 @Value("1") private Long id;那如果依赖的是自定义的类怎么办呢?

这时候就需要@Autowired自动装配注解

@Autowired自动装配注解又分为根据类型自动装配、根据依赖的bean id自动装配、根据优先级自动装配。

默认的装配方式是根据类型自动装配,代码如下:

public class RoleService{

@Autowired

private Role  role = null;

/**getter and setter*/

}

但是这里存在一个问题,如果Role是一个接口,而它的实现类不止一个呢,那么spring初始化的时候会抛出异常

这时候可以通过@Primary注解来指定优先的Bean依赖注入

@Component("roleImpl1")

@Primary

public class RoleImpl1 implements Role{

}

@Component("roleImpl2")

public class RoleImpl2 implements Role{

}

那么这时候,Spring会优先将bean roleImpl1注入到RoleService中

除此之外还可以使用@Qualifier注解来根据bean id自动装配

public class RoleService{

@Autowired

@Qualifier("roleImpl2")

private Role role = null;

}

这时候就会使用roleImpl2注入到RoleService中

三种自动装配方式的优先级: 根据bean id 也就是@Qualifier > @Primary > byType也就是默认的根据类型装配

@Autowired还可以用于构造方法参数自动装配

public class RoleService{

private Role role = null;

public RoleService(@Autowired Role role){

this.role = role;

}

3、装配的混合使用

各种装配方式各有优缺点,在实际的开发工作中,工程内的bean通常采用注解进行配置。

第三方的jar包里的bean通常采用xml文件进行配置,这样可以不考虑第三方项目的实现细节。

<!-- 下面的配置演示第三方的jar采用xml配置Bean,工程系统内Bean采用注解的方式,即混合使用 -->

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">

<property name="driverClassName" value="com.mysql.jdbc.Driver" />

<property name="url" value="jdbc:mysql://localhost:3306/chapter10" />

<property name="username" value="root" />

<property name="password" value="123456" />

</bean>

创建RoleDaoImpl代码如下:

@Component("roleDaoImpl")

public class RoleDaoImpl implements RoleDao{

@Autowired

private DataSource dataSource = null;

public Role getRoleById(Long id) {

Connection connection = null;

PreparedStatement ps = null;

ResultSet rs = null;

String sql = "SELECT * FROM t_role WHERE id = ?";

try {

connection = dataSource.getConnection();

ps = connection.prepareStatement(sql);

ps.setLong(1, id);

rs = ps.executeQuery();

while(rs.next()) {

Role role = new Role();

role.setId(id);

role.setName(rs.getString("name"));

role.setNote(rs.getString("note"));

return role;

}

} catch (SQLException e) {

e.printStackTrace();

}finally {

if(connection != null) {

try {

connection.close();

} catch (SQLException e) {

e.printStackTrace();

}

}

}

return null;

}

}

注解信息配置类AnotationConfig:

@ImportResource("classpath:spring-cfg-chapter10.xml") //可以在注解配置类中引入xml配置,可以通过多个@importResource注解导入多个配置文件

但是spring目前还不支持在xml配置中引入注解类但是可以通过扫包的方式

/**

*

* @author John

* 通过这个配置类,Spring会扫描同包或者子包下的所有注解Component的Bean

*可以指定扫描的包路径和需要扫描的类

*/

@ComponentScan(basePackages= {"spring.chapter10.loadbeanbyanotation"}, basePackageClasses= {Role.class})

public class AnotationConfig {

}

另外也可以根据业务模块产生多个xml配置文件,然后在一个总的配置文件中import它们,如下:

<import resource="spring-datasource.xml" />

<import resource="spring-logg.xml />

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容