- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
《Spring-DI》.doc
Spring DI
Made by Michael.Shi
281481047@
注入方法 2
1.Setter注入 2
2.Constructor注入 2
3.接口注入(了解) 2
简单属性注入 3
Bean的声明周期 3
1.Sigleton 3
2.Prototype 3
集合注入 3
AutoWire 4
byName 4
byType 5
LifeCycle 5
lazy-init 5
init-method和destory-method 5
Annotation 6
Autowire Qualifier 6
1.普通xml文件 6
2.DTD BEAN 的xml文件 7
Resource 8
Component 8
全文都是以《学生课程管理》这个例子来进行说明,简单明了:
里面有studentDao,studentDaoImpl,Student,
StudentService
注入方法
1.Setter注入
在StudentService类中要有Student对象作为局部变量,以及它的setter方法
bean id=studentService class=com.primeton.spl.service.StudentService lazy-init=true
property name=student
ref bean=student/
/property
/bean
bean id=student class=com.primeton.spl.bean.Student lazy-init=true/
2.Constructor注入
bean id=studentService class=com.primeton.spl.service.StudentService lazy-init=true
constructor-arg type=com.primeton.spl.bean.Student
ref bean=student/
/constructor-arg
constructor-arg index=1 ref=studentDao /
/bean
3.接口注入(了解)
简单属性注入
在Student类中要有id,name局部变量,以及他们的setter方法
bean id=student class=com.primeton.spl.bean.Student lazy-init=true
property name=id
value9257/value
/property
property name=name
valueMichael/value
/property
/bean
或者
bean id=student class=com.primeton.spl.bean.Student lazy-init=true
constructor-arg value=Michael index=1/
constructor-arg type=java.lang.String
value5555/value
/constructor-arg
/bean
Bean的声明周期
1.Sigleton
默认(只new一个)
2.Prototype
每次new的都是新的
集合注入
bean id=moreComplexObject class=example.ComplexObject
!-- results in a setAdminEmails(java.util.Properties) call --
property name=adminEmails
props
prop key=administratoradministrator@/prop
prop key=supportsupport@/prop
prop key=developmentdevelopment@/prop
/props
/property
!-- results in a setSomeList(java.util.List) call --
property name=someList
list
valuea list element followed by a reference/value
ref bean=myDataSource /
/list
/property
!-- results in a setSomeMap(java.util.Map) call --
property name=someMap
map
entry key=an e
您可能关注的文档
最近下载
- 2023年ISO37001反贿赂管理体系内部审核全套资料.docx VIP
- 中国文化产业和旅游业年度研究报告(2024)精华版.pdf
- unit6被动与主动-英汉对比与翻译分析.ppt VIP
- 大学科技英语课件 第一章 科技英语的特点概述.ppt VIP
- 互联网时代下小学英语混合式学习模式的创新与实践.docx
- GB∕T 33444-2016 固体矿产勘查工作规范(可复制版).pdf
- 实验六 硫酸阿托品注射液的鉴别与含量测定 实验七 阿司匹林片剂的鉴别和含量测定.ppt VIP
- 家政服务员(整理收纳师)赛项样题-新职业国赛江苏选拔赛技术工作文件.docx VIP
- 驻外人员考试试题及答案.doc VIP
- (高清版)ZT 0338.4-2020 固体矿产资源量估算规程 第4部分 SD法.pdf VIP
文档评论(0)