欢迎来到天天文库
浏览记录
ID:35515474
大小:942.00 KB
页数:23页
时间:2019-03-25
《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:
此文档下载收益归作者所有