首页 > 编程语言 > 详细

采用Spring管理Bean和依赖注入

时间:2014-06-17 18:04:40      阅读:396      评论:0      收藏:0      [点我收藏+]

1.实例化spring容器 和 从容器获取Bean目标

实例化Spring容器常用的两种办法:

办法一:

在类途径下寻觅配置文件来实例化容器 [引荐运用]

ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[]{"beans.xml"});

办法二:

在文件体系途径下寻觅配置文件来实例化容器 [这种办法能够在开发期间运用]

ApplicationContext ctx = new FileSystemXmlApplicationContext(new String[]{“d:\\beans.xml“});

Spring的配置文件能够指定多个,能够经过String数组传入。


当spring容器启动后,由于spring容器能够办理bean目标的创立,毁掉等生命周期,

所以咱们只需从容器直接获取Bean目标就行,而不必编写一句代码来创立bean目标。

从容器获取bean目标的代码如下:

ApplicationContext ctx = new ClassPathXmlApplicationContext(“beans.xml”);

OrderService service = (OrderService)ctx.getBean("personService");


<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns=" http://www.metabase.cn/schema/beans"

<beans xmlns=" http://www.jinanwuliangye.com/schema/beans"

<beans xmlns=" http://www.tongxinglong.com/schema/beans"

<beans xmlns=" http://www.qclchina.com/schema/beans"

<beans xmlns=" http://www.vipfuxin.com//schema/beans"

xsi:schemaLocation=" 

http://www.minnan888.net/schema/mvc/spring-mvc-3.2.xsd 

http://www.lcsyt.com/schema/mvc/spring-mvc-3.2.xsd 

http://lf.yunnanw.cn//schema/mvc/spring-mvc-3.2.xsd 

http://www.ceocbs.com/schema/mvc/spring-mvc-3.2.xsd 

http://www.yzbljp.com/schema/mvc/spring-mvc-3.2.xsd 

http://www.hyyfscl.com//schema/mvc/spring-mvc-3.2.xsd

http://www.shoudashou.com//schema/mvc/spring-mvc-3.2.xsd

http://www.shuoma.com.cn//schema/mvc/spring-mvc-3.2.xsd ">

         

<!--  @Controller, @Service, @Configuration, etc.  --> 

  <!--  启动Spring注解功能  --> 

   <context:component-scan base-package="com.yeeeueyf.controller" /> 


<mvc:annotation-driven />

<mvc:default-servlet-handler />


采用Spring管理Bean和依赖注入,布布扣,bubuko.com

采用Spring管理Bean和依赖注入

原文:http://8917152.blog.51cto.com/8907152/1427229

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!