spring-装配
spring装配有三种方式:
- 基于xml的显式配置
- 基于注解的自动装配
- 在java中进行显示配置
1、基于注解的自动装配
spring从组件扫描和自动装配两个角度实现自动转配
- 组件扫描:spring会自动发现应用上下文中所创建的bean,配置时需要指定扫描的包
<context:component-scan base-package="com.cn"></context:component-scan>
组件扫描会将标记了以下注解的类实例化交给spring容器管理
@controller、@service、@repository、@component
- 自动装配:spring自动满足bean之间的依赖
在组件扫描时候,创建bean之后,容器会尽可能的去满足bean的依赖。自动装配通过注解@autowired实现,该注解定义如下:
@target({elementtype.constructor, elementtype.field, elementtype.method, elementtype.annotation_type}) @retention(retentionpolicy.runtime) @documented public @interface autowired { boolean required() default true; }
a、属性required的值默认为true,表明在创建bean后,一定要被@autowired注解的类型装配上匹配的bean,否则,容器启动会抛出异常:
caused by: org.springframework.beans.factory.nosuchbeandefinitionexception: no qualifying bean of type [com.cn.pojo.person] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. dependency annotations: {@org.springframework.beans.factory.annotation.autowired(required=true)}
b、将required的值设置为false,spring会尝试执行自动装配,但如果没有匹配的bean,spring会让这个bean处于未装配状态。这时,会有隐患,通常需要进行null检查,否则抛出nullpointerexception异常
c、无论是否设置required的值,当容器中存在有多个bean满足依赖关系,spring将会抛出一个异常,表明没有明确指出要选择哪个bean进行自动装配。
spring提供了多种可选方案解决这样的歧义:
1)将可选bean中的某一个设为首选,当装配遇到这样的歧义时候,spring将会使用首选bean。
@primary注解配置,常与@controller、@service、@repository、@component使用:
package com.cn.pojo; import org.springframework.context.annotation.primary; import org.springframework.stereotype.component; @primary @component public class person { //... }
或者xml配置:
<bean id="person" class="com.cn.pojo.person" primary="true"></bean>
注:如果配置了两个或者两个以上的首选bean,那么它就无法正常工作了,同样还是有歧义。
2)使用限定符指定spring装配的bean
@qualifier注解是使用限定符的主要方式,常与@autowired使用
package com.cn.controller; import com.cn.pojo.person1; import org.springframework.beans.factory.annotation.autowired; import org.springframework.beans.factory.annotation.qualifier; import org.springframework.stereotype.controller; @controller public class hellocontroller { @autowired @qualifier("person1") private person1 person1; public void print(){ system.out.println(person1.tostring()); } }
限定符:
实例化一个bean时候,默认限定符为首字母小写的类名。与默认的bean的id规则一致,如果bean不想使用默认id,可以在@controller、@service、@repository、@component上指定id的值。
可以在实例化对象时候,使用 @qualifier注解指定类的限定符
package com.cn.pojo; import org.springframework.beans.factory.annotation.qualifier; import org.springframework.context.annotation.primary; import org.springframework.stereotype.component; @component @qualifier("person100") public class person1 { //... }
2、基于xml的显式配置
- 使用构造器初始化bean
a、装配字面量
b、装配bean
c、装配集合
d、c命名空间
- 设置属性初始化bean
a、装配字面量
b、装配bean
c、装配集合
d、p命名空间
- util命名空间:用于定义独立于bean之外的集合,可被引用装配bean
小结:通常项目中将基于注解的自动装配和基于xml的显示配置结合使用,在java中进行显示配置用的不多。
上一篇: 华为机试 取近似值