Spring依赖注入Word格式.docx

上传人:b****2 文档编号:3254232 上传时间:2023-05-01 格式:DOCX 页数:10 大小:17.65KB
下载 相关 举报
Spring依赖注入Word格式.docx_第1页
第1页 / 共10页
Spring依赖注入Word格式.docx_第2页
第2页 / 共10页
Spring依赖注入Word格式.docx_第3页
第3页 / 共10页
Spring依赖注入Word格式.docx_第4页
第4页 / 共10页
Spring依赖注入Word格式.docx_第5页
第5页 / 共10页
Spring依赖注入Word格式.docx_第6页
第6页 / 共10页
Spring依赖注入Word格式.docx_第7页
第7页 / 共10页
Spring依赖注入Word格式.docx_第8页
第8页 / 共10页
Spring依赖注入Word格式.docx_第9页
第9页 / 共10页
Spring依赖注入Word格式.docx_第10页
第10页 / 共10页
亲,该文档总共10页,全部预览完了,如果喜欢就下载吧!
下载资源
资源描述

Spring依赖注入Word格式.docx

《Spring依赖注入Word格式.docx》由会员分享,可在线阅读,更多相关《Spring依赖注入Word格式.docx(10页珍藏版)》请在冰点文库上搜索。

Spring依赖注入Word格式.docx

personService"

class="

com.test.bean.impl.PersonServiceImpl"

>

!

--基本类型,string类型-->

propertyname="

age"

value="

20"

/property>

name"

value="

张无忌"

/bean>

*引用其它bean

beanid="

person"

com.test.bean.Person"

/>

--引用类型-->

propertyname="

ref="

ref:

表示引用别的对象

*内部bean

--内部bean注入-->

personClass"

beanclass="

com.test.bean.PersonClass"

/propert>

这种方式的缺点是你无法在其它地方重用这个personClass实例,原因是它是专门为personService而用。

*装配集合

若bean的属性是集合类型,按如下处理:

A、装配List和数组:

--装配list-->

lists"

list>

value>

list1<

/value>

list2<

refbean="

/>

/list>

--装配数组-->

obj"

obj1<

obj2<

refbean="

B、装配set:

--装配set-->

sets"

set>

set1<

set2<

/set>

set使用方法和list一样,不同的是对象被装配到set中,而list是装配到List或数组中装配。

C、装配map:

--装配map-->

maps"

map>

entrykey="

01"

map01<

/entry>

02"

map02<

/map>

map中的<

entry>

的数值和<

以及<

的一样,可以使任何有效的属性元素,需要注意的是key值必须是String的。

D、装配Properties:

--装配Properties 

-->

props"

props>

propkey="

prop1<

/prop>

prop2<

/props>

E、设置null:

--装配null-->

listnull"

null/>

通过参数的顺序:

constructor-argindex="

0"

张三<

/constructor-arg>

1"

56<

通过构造函数注入依赖

--通过参数的类型-->

constructor-argtype="

java.lang.Integer"

java.lang.String"

依赖注入--手工装配—注解方式

在java代码中使用@Autowired或@Resource注解方式进行装配的前提条件是。

1、引入context命名空间 

需要在xml配置文件中配置以下信息:

beansxmlns="

http:

//www.springframework.org/schema/beans"

xmlns:

xsi="

//www.w3.org/2001/XMLSchema-instance"

context="

//www.springframework.org/schema/context"

xsi:

schemaLocation="

//www.springframework.org/schema/beans

//www.springframework.org/schema/beans/spring-beans-2.5.xsd

//www.springframework.org/schema/context

//www.springframework.org/schema/context/spring-context-2.5.xsd"

context:

annotation-config/>

/beans>

2、在配置文件中添加context:

annotation-config标签

这个配置隐式注册了多个对注释进行解析处理的处理器

AutowiredAnnotationBeanPostProcessor,CommonAnnotationBeanPostProcessor,

PersistenceAnnotationBeanPostProcessor,RequiredAnnotationBeanPostProcessor

注:

@Resource注解在spring安装目录的lib\j2ee\common-annotations.jar

在java代码中使用@Autowired或@Resource注解方式进行装配,这两个注解的区别是:

@Autowired默认按类型装配,

@Resource默认按名称装配,当找不到与名称匹配的bean才会按类型装配。

@Autowired

privatePersonDao 

personDao;

//用于字段上

publicvoidsetPersonDao(PersonDaopersonDao){ 

//用于属性的set方法上

this.personDao=personDao;

}

@Autowired注解是按类型装配依赖对象,默认情况下它要求依赖对象必须存在,如果允许null值,可以设置它required属性为false。

@Autowired(required=false)

@Autowired(request=false)

publicvoidsetPersonDao(PersonDaopersonDao){ 

//用于属性的set方法上

如果我们想使用按名称装配,可以结合@Qualifier注解一起使用。

如下:

@Autowired@Qualifier("

personDao"

publicvoidsetPersonDao(@Qualifier("

)PersonDaopersonDao){//用于属性的set方法上

this.personDao=personDao;

@Qualifier注解也能够被指定为构造器的参数或者方法的参数:

@Resource注解和@Autowired一样,也可以标注在字段或属性的setter方法上.

@Resource注解默认按名称装配。

名称可以通过@Resource的name属性指定,如果没有指定name属性,

当注解标注在字段上,即默认取字段的名称作为bean名称寻找依赖对象

当注解标注在属性的setter方法上,即默认取属性名作为bean名称寻找依赖对象。

@Resource(name="

privatePersonDaopersonDao;

publicvoidsetPersonDao(PersonDaopersonDao){//用于属性的set方法上

后一种相当于xml配置文件中的

propertyname=“personDao"

ref="

注意:

如果没有指定name属性,并且按照默认的名称找不到依赖对象时,@Resource注解会回退到按类型装配。

但一旦指定了name属性,就只能按名称装配了。

2.自动装配依赖对象

对于自动装配,大家了解一下就可以了,实在不推荐大家使用。

例子:

beanid=“foo”class=“...Foo”autowire=“autowiretype”>

autowire属性取值如下

byType:

按类型装配,可以根据属性的类型,在容器中寻找跟该类型匹配的bean。

如果发现多个,那么将会抛出异常。

如果没有找到,即属性值为null。

*byName:

按名称装配,可以根据属性的名称,在容器中寻找跟该属性名相同的bean,如果没有找到,即属性值为null。

*constructor与byType的方式类似,不同之处在于它应用于构造器参数。

如果在容器中没有找到与构造器参数类型一致的bean,那么将会抛出异常。

*autodetect:

首先尝试使用constructor来自动装配,然后使用byType方式。

不确定性的处理与constructor方式和byType方式一致。

通过在classpath自动扫描方式把组件纳入spring容器中管理

前面的例子我们都是使用XML的bean定义来配置组件。

在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找及维护起来也不太方便。

spring2.5为我们引入了组件自动扫描机制,它可以在类路径底下寻找标注了@Component、@Service、@Controller、@Repository注解的类,并把这些类纳入进spring容器中管理。

它的作用和在xml文件中使用bean节点配置组件是一样的。

要使用自动扫描机制,我们需要打开以下配置信息:

1、引入context命名空间需要在xml配置文件中配置以下信息:

component-scanbase-package="

cn.itcast"

component-scan标签

其中base-package为需要扫描的包(含子包)。

注:

1、在使用组件扫描元素时,AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor会隐式地被包括进来。

也就是说,连个组件都会被自动检测并织入-所有这一切都不需要在XML中提供任何bean配置元数据。

2、功能介绍

@Service用于标注业务层组件、

@Controller用于标注控制层组件(如struts中的action)、

@Repository用于标注数据访问组件,即DAO组件。

而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。

//Dao层

importorg.springframework.stereotype.Repository;

importcom.test.dao.PersonDao;

@Repository("

publicclassPersonDaoBeanimplementsPersonDao{

//业务层

importjavax.annotation.Resource;

importorg.springframework.stereotype.Service;

importcom.test.service.PersonService;

@Service("

publicclassPersonServiceBeanimplementsPersonService{

privatePersonDaopersonDao;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 总结汇报 > 学习总结

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2