码迷,mamicode.com
首页 > 编程语言 > 详细

如何在Web启动时获取Spring 上下文环境

时间:2014-11-19 16:07:52      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:spring   web   上下文   

问题如题,本文给出一个解决方案,满足以下要求:

(1)Web启动时能自动获取Spring 的上下文,从而用户可以随意的获取其中的Bean。

(2)在单文件测试环境中,亦可以根据配置文件路径加载Spring上下文。


大致原理为:

Spring 启动时,会给任何一个实现了ApplicationContextAware接口的Bean(也可以叫做类),注入一个构造函数参数:applicationContext。

有了这样的一个类,就可以在自己的代码里轻松的获取上下文了。

编写这样的一个类还有个好处,那就是,对于类被调用时,没有通过web启动的方式(那么也就不会注入),根据上下文对象判空可以判断。

这样的一个类的源码为:

import org.apache.tiles.velocity.template.GetAsStringDirective;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

public class MyBeanFactory implements ApplicationContextAware{

	public static ApplicationContext context = null;
	
	@Override
	public void setApplicationContext(ApplicationContext applicationContext) throws BeansException
	{
		if(context==null)
		{
			context =applicationContext;
		}
		System.out.println("ApplicationContext setter is called...");
	}

	public static ApplicationContext getApplicationContext() {
		
			if(context==null)
			{ //本地调试
				context = new FileSystemXmlApplicationContext("/WebContent/WEB-INF/config/spring-context.xml");
			}
	     	return context;
		
	}
	
	public static Object getBean(String name)
	{
		if(context==null)
		{
			context = getApplicationContext();
		}
		return context.getBean(name);
	}
}

如何在Web启动时获取Spring 上下文环境

标签:spring   web   上下文   

原文地址:http://blog.csdn.net/tbwood/article/details/41281299

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!