Tomcat启动时加载数据到缓存---web.xml中listener加载顺序(优先初始化Spring IOC容器)

      最近用到在Tomcat服务器启动时自动加载数据到缓存,这就需要创建一个自定义的缓存监听器并实现ServletContextListener接口,并且在此自定义监听器中需要用到Spring的依赖注入功能.在web.xml文件中监听器配置如下:

<listener>
    	<listener-class>
    		org.springframework.web.context.ContextLoaderListener
    	</listener-class>
</listener>
<listener>
	<listener-class>
		com.wsjiang.test.listener.CacheListener
	</listener-class>
</listener>
 

      上面的配置细细大意为,先配置spring监听器,启动spring,再配置一个缓存监听器,我希望他们是顺序执行的,因为在缓存监听器中需要 spring注入其他对象的实例,我期望在服务器加载缓存监听器前加载Spring的监听器,将其优先实例化。但是实际运行发现他们并不是按照配置的顺序加载的。


      对上面的问题我查询了很多资料,找到了一种解决方案,希望能帮助遇到同类问题的朋友。
      思路就是,既然listener的顺序是不固定的,那么我们可以整合两个listener到一个类中,这样就可以让初始化的顺序固定了。我就重写了org.springframework.web.context.ContextLoaderListener这个类的contextInitialized方法.大致代码如下:

public class ContextLoaderListenerOverWrite extends ContextLoaderListener {
	private IStationService stationService;
	private IOSCache osCache;
	@Override
	/**
	 * @description 重写ContextLoaderListener的contextInitialized方法
	 */
	public void contextInitialized(ServletContextEvent event) {
		super.contextInitialized(event);
		ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(event.getServletContext());
		//获取bean
		stationService = (IStationService) applicationContext.getBean("stationService"); 
		osCache = (IOSCache) applicationContext.getBean("osCache");
		/*
		 具体地业务代码
		 */
	}
}
 

      web.xml的配置就由两个listener变为一个:

<listener>
	<listener-class>
                 com.wsjiang.test.listener.ContextLoaderListenerOverWrite
        </listener-class>
</listener>

       这样就能保证Spring的IOC容器先于自定义的缓存监听器初始化,在缓存监听器加载的时候就能使用依赖注入的实例.

       我还是一新手,如果哪位大侠有其他方案,望指点,谢谢!

猜你喜欢

转载自wsjiang.iteye.com/blog/1127304