Spring_Autowiring collaborators

在Spring3.2.2中自动装配类型,分别为:no(default)(不采用自动装配)、byName,byType,constructor下面来分别介绍一下这些是如何自动装配的

<bean id="foo" class="...Foo" autowire="autowire type">

Mode

Explanation

no

(Default) No autowiring. Bean references must be defined via a ref element. Changing the default setting is not recommended for larger deployments, because specifying collaborators explicitly gives greater control and clarity. To some extent, it documents the structure of a system.

byName

Autowiring by property name. Spring looks for a bean with the same name as the property that needs to be autowired. For example, if a bean definition is set to autowire by name, and it contains a master property (that is, it has a setMaster(..) method), Spring looks for a bean definition named master, and uses it to set the property.

byType

Allows a property to be autowired if exactly one bean of the property type exists in the container. If more than one exists, a fatal exception is thrown, which indicates that you may not use byType autowiring for that bean. If there are no matching beans, nothing happens; the property is not set.

constructor

Analogous to byType, but applies to constructor arguments. If there is not exactly one bean of the constructor argument type in the container, a fatal error is raised.

案例分析:

1、创建CumputerBean类

package www.csdn.spring.autowire.bean;

public class CumputerBean {

// 电脑名称

private String name;

public void setName(String name) {

this.name = name;

}

@Override

public String toString() {

return "CumputerBean [name=" + name + "]";

}

}

2、创建DeptBean 类

package www.csdn.spring.autowire.bean;

public class DeptBean {

//部门名称

private String name;

public void setName(String name) {

this.name = name;

}

@Override

public String toString() {

return "DeptBean [name=" + name + "]";

}

}

3、创建EmployeeBean

package www.csdn.spring.autowire.bean;

public class EmployeeBean {

private DeptBean deptBean;

private CumputerBean cumputerBean;

public void setDeptBean(DeptBean deptBean) {

this.deptBean = deptBean;

}

public void setCumputerBean(CumputerBean cumputerBean) {

this.cumputerBean = cumputerBean;

}

@Override

public String toString() {

return "EmployeeBean [deptBean=" + deptBean + ", cumputerBean="

+ cumputerBean + "]";

}

}

首先分析no、byName、byType的配置都是采用setter方法依赖注入实现的案例

1、no配置(通过ref=””引用需要的bean)

<?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean  根据EmployeeBean中的 属性名称  去匹配-->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean">

<property name="cumputerBean" ref="cumputerBean" />

<property name="deptBean" ref="deptBean" />

</bean>

</beans>

2、byName配置(分析:会根据EmployeeBean中属性的名称 自动装配)

<?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean-->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean" autowire="byName"/>

</beans>

3、byType配置(分析:会根据EmployeeBean中属性的类型 自动装配)

<?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean  根据EmployeeBean中的 属性名称  去匹配-->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean" autowire="byType"/>

</beans>

注意:当根据byType类型装配时,当在容器内找到多个匹配的类型时会出现如下bug

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'employeeBean' defined in class path resource [spring-byType.xml]: Unsatisfied dependency expressed through bean property 'deptBean': : No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] is defined: expected single matching bean but found 2: deptBean,deptBean1; nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] is defined: expected single matching bean but found 2: deptBean,deptBean1

4、Constructor(构造器参数根据byType类型匹配,自动装配)

首先修改EmployeeBean类 修改后代码如下:

package www.csdn.spring.autowire.bean;

public class EmployeeBean {

private DeptBean deptBean;

private CumputerBean cumputerBean;

public EmployeeBean(DeptBean deptBean, CumputerBean cumputerBean) {

super();

this.deptBean = deptBean;

this.cumputerBean = cumputerBean;

}

@Override

public String toString() {

return "EmployeeBean [deptBean=" + deptBean + ", cumputerBean="

+ cumputerBean + "]";

}

}

配置文件操作:

 <?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean 根据EmployeeBean中的 属性名称 bytype 去匹配 -->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean"

autowire="constructor">

</bean>

</beans>

说明:

1、当构造器的参数类型在容器中找不全时。

比如:

配置文件中只配置了CumpterBean时

  <?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 员工bean 根据EmployeeBean中的 属性名称 bytype 去匹配 -->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean"

autowire="constructor">

</bean>

</beans>

会出现如下bug:

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'employeeBean' defined in class path resource [spring-constructors.xml]: Unsatisfied dependency expressed through constructor argument with index 0 of type [www.csdn.spring.autowire.bean.DeptBean]: : No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}

Caused by:

org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}

2、当配置文件找到构造器参数的类型有多个的时候比如配置文件如下:

<?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 部门bean -->

<bean id="deptBean1" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean 根据EmployeeBean中的 属性名称 bytype 去匹配 -->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean"

autowire="constructor">

</bean>

</beans>

说明:上面配置有两个同样类型的DeptBean但是不会出现bug,原因是在EmployeeBean中构造器接受的参数名称与deptBean一致。

3、当配置文件找到构造器参数的类型有多个的时候比如配置文件如下:

<?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="cumputerBean" class="www.csdn.spring.autowire.bean.CumputerBean">

<property name="name" value="HP6325笔记本" />

</bean>

<!-- 部门bean -->

<bean id="deptBean1" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 部门bean -->

<bean id="deptBean2" class="www.csdn.spring.autowire.bean.DeptBean">

<property name="name" value="CSDN教育事业部" />

</bean>

<!-- 员工bean 根据EmployeeBean中的 属性名称 bytype 去匹配 -->

<bean id="employeeBean" class="www.csdn.spring.autowire.bean.EmployeeBean"

autowire="constructor">

</bean>

</beans>

会出现如下bug(与byType的bug一致):

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'employeeBean' defined in class path resource [spring-constructors.xml]: Unsatisfied dependency expressed through constructor argument with index 0 of type [www.csdn.spring.autowire.bean.DeptBean]: : No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] is defined: expected single matching bean but found 2: deptBean1,deptBean2; nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [www.csdn.spring.autowire.bean.DeptBean] is defined: expected single matching bean but found 2: deptBean1,deptBean2

 

Spring学习(三)—— 自动装配案例分析的更多相关文章

  1. Spring学习(三)--高级装配

    一.Spring profile 在开发软件的时候,有一个很大的挑战就是将应用程序从一个环境迁 移到另外一个环境.开发阶段中,某些环境相关做法可能并不适合迁 移到生产环境中,甚至即便迁移过去也无法正常 ...

  2. Spring学习笔记--自动装配Bean属性

    Spring提供了四种类型的自动装配策略: byName – 把与Bean的属性具有相同名字(或者ID)的其他Bean自动装配到Bean的对应属性中. byType – 把与Bean的属性具有相同类型 ...

  3. Spring学习(三)-----Spring自动装配Beans

    在Spring框架,可以用 auto-wiring 功能会自动装配Bean.要启用它,只需要在 <bean>定义“autowire”属性. <bean id="custom ...

  4. Spring(六)之自动装配

    一.自动装配模型 下面是自动连接模式,可以用来指示Spring容器使用自动连接进行依赖注入.您可以使用元素的autowire属性为bean定义指定autowire模式. 可以使用 byType 或者  ...

  5. Spring 由构造函数自动装配

    Spring 由构造函数自动装配,这种模式与 byType 非常相似,但它应用于构造器参数. Spring 容器看作 beans,在 XML 配置文件中 beans 的 autowire 属性设置为 ...

  6. 【面试普通人VS高手系列】Spring Boot中自动装配机制的原理

    最近一个粉丝说,他面试了4个公司,有三个公司问他:"Spring Boot 中自动装配机制的原理" 他回答了,感觉没回答错误,但是怎么就没给offer呢? 对于这个问题,看看普通人 ...

  7. spring学习总结——高级装配学习二(处理自动装配的歧义性)

    我们已经看到如何使用自动装配让Spring完全负责将bean引用注入到构造参数和属性中.自动装配能够提供很大的帮助.不过,spring容器中仅有一个bean匹配所需的结果时,自动装配才是有效的.如果不 ...

  8. Spring 学习——Spring注解——Autowiring(自动装配)

    装配方式 方式一:默认 方式二:byName:根据属性名称自动装配.会查找Bean容器内部所有初始化的与属性名成相同的Bean,自动装配.(需要通过set方法注入,注入Bean的id名称需要和实体类的 ...

  9. Spring注解驱动开发(三)-----自动装配

    自动装配 概念 Spring利用依赖注入(DI),完成对IOC容器中中各个组件的依赖关系赋值. @Autowired-----自动注入 1.默认优先按照类型去容器中找对应的组件 application ...

随机推荐

  1. html5中audio支持音频格式

    HTML5 Audio标签能够支持wav, mp3, ogg, acc, webm等格式,但有个很重要的音乐文件格式midi(扩展名mid)却在各大浏览器中都没有内置的支持.不是所有的浏览器都支持MP ...

  2. 使用TryParse()来执行数值转换

    static void Main() { var ageText = "25"; if (int.TryParse(ageText,out int age)) { Console. ...

  3. 采用文件方式安装Python第三方库

    由于Python某些第三方库仅提供源代码,通过pip下载文件后无法在Windows系统编译安装,会导致第三方库安装失败.为了解决这类第三方库的安装问题,美国加州大学尔湾分校提供了一个网页,帮助Pyth ...

  4. 用for循环求1-100的所有数的和

    2.求1-100的所有数的和 x=0for y in range (1,101): x=x+yprint(x)#Python for循环中可以循环一个列表或者某一个字符串下面是for的基本格式,英文是 ...

  5. C Mingw gcc printf 刷新缓冲行

    C Mingw gcc printf 刷新缓冲行 参考:https://stackoverflow.com/questions/13035075/printf-not-printing-on-cons ...

  6. c语言实现通讯录管理系统(c课程设计)

    工具:Visual C++6.0 说明: 本系统基于C语言实现班级通讯录管理系统,为大一时学习C语言刚入门所做的课程设计.功能包括增.删.查.改等,非常适合初学者练手.通讯录包括的个人信息有姓名.学号 ...

  7. c语言数据结构(一)

    第一章   绪论 一.数据与数据结构 数据:所有能被输入到计算机中,且被计算机处理的符号的集合计算机操作的对象的总称.是计算机处理的信息的某种特定的符号表示形式. 数据元素:数据中的一个“个体”,数据 ...

  8. 8-IdentityServer4登录中心

    1-新建webapi  IdentityServer4服务器项目 E:\coding\netcore\IdentityServerSample>dotnet new webapi --name ...

  9. Jedis+Redis+spring缓存

    Redis程序使用它?Jedis 访问redis java api Redis-server & //后台运行防火墙要关闭 ts-parent的pom.xml加上jedis依赖 <dep ...

  10. 北京Uber优步司机奖励政策(3月14日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...