获取spring 容器的bean

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/feikingb/article/details/79117489
一:  
ApplicationContext context = new FileSystemXmlApplicationContext("applicationContext.xml");
context.getBean(" ")方法;
说明:这种方式适用于采用Spring框架的独立应用程序,需要程序通过配置文件手工初始化Spring的情况。
二:
import org.springframework.web.context.support.WebApplicationContextUtils;
ApplicationContext context1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc);
ApplicationContext context2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc);
context1.getBean(" ");
context2.getBean(" ");
说明:这种方式适合于采用Spring框架的B/S系统,通过ServletContext对象获取ApplicationContext对象,然后在通过它获取需要的类实例。
上面两个工具方式的区别是,前者在获取失败时抛出异常,后者返回null。
三:
抽象类ApplicationObjectSupport提供getApplicationContext()方法,可以方便的获取到ApplicationContext。
Spring初始化时,会通过该抽象类的setApplicationContext(ApplicationContext context)方法将ApplicationContext 对象注入。
四:
继承自抽象类WebApplicationObjectSupport
说明:类似上面方法,调用getWebApplicationContext()获取WebApplicationContext。
五:
实现接口ApplicationContextAware
说明:实现该接口的setApplicationContext(ApplicationContext context)方法,并保存ApplicationContext 对象。
Spring初始化时,会通过该方法将ApplicationContext对象注入。

猜你喜欢

转载自blog.csdn.net/feikingb/article/details/79117489
今日推荐