spring管理bean和依赖注入

spring管理bean和依赖注入

ID:35515474

大小:942.00 KB

页数:23页

时间:2019-03-25

spring管理bean和依赖注入_第1页
spring管理bean和依赖注入_第2页
spring管理bean和依赖注入_第3页
spring管理bean和依赖注入_第4页
spring管理bean和依赖注入_第5页
资源描述:

《spring管理bean和依赖注入》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、框架学习之Spring第二节采用Spring管理Bean和依赖注入1.实例化spring容器和从容器获取Bean对象实例化Spring容器常用的两种方式:方法一:在类路径下寻找配置文件来实例化容器[推荐使用]ApplicationContextctx=newClassPathXmlApplicationContext(newString[]{"beans.xml"});方法二:在文件系统路径下寻找配置文件来实例化容器[这种方式可以在开发阶段使用]ApplicationContextctx=newFileSystemXmlApplicat

2、ionContext(newString[]{“d:\beans.xml“});Spring的配置文件可以指定多个,可以通过String数组传入。 当spring容器启动后,因为spring容器可以管理bean对象的创建,销毁等生命周期,所以我们只需从容器直接获取Bean对象就行,而不用编写一句代码来创建bean对象。从容器获取bean对象的代码如下:ApplicationContextctx=newClassPathXmlApplicationContext(“beans.xml”);OrderServiceservice=(Ord

3、erService)ctx.getBean("personService"); 2.Spring实例化Bean的三种方式以下是三种方式的例子:1.使用类构造器实例化[默认的类构造器]2.使用静态工厂方法实例化publicclassOrderFa

4、ctory{publicstaticOrderServiceBeancreateOrder(){//注意这里的这个方法是static的!returnnewOrderServiceBean();}}3.使用实例工厂方法实例化:p

5、ublicclassOrderFactory{publicOrderServiceBeancreateOrder(){returnnewOrderServiceBean();}} 3.Bean的生命周期(Bean的作用域)bean的scope属性Thescopeofthisbean:typically"singleton"(onesharedinstance,whichwillbereturnedbyallcallstogetBeanwiththegivenid),or"prototype"(independentinstanceres

6、ultingfromeachcalltogetBean).Defaultis"singleton".Singletonsaremostcommonlyused,andareidealformulti-threadedserviceobjects.Furtherscopes,suchas"request"or"session",mightbesupportedbyextendedbeanfactories(e.g.inawebenvironment).Note:Thisattributewillnotbeinheritedbychildb

7、eandefinitions.Hence,itneedstobespecifiedperconcretebeandefinition.Innerbeandefinitionsinheritthesingletonstatusoftheircontainingbeandefinition,unlessexplicitlyspecified:Theinnerbeanwillbeasingletonifthecontainingbeanisasingleton,andaprototypeifthecontainingbeanhasanyoth

8、erscope. .singleton [单例]eg:

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。