servlet3.0 contextLoadListener

2015-08-18  本文已影响223人  lovePython

ContextLoadListener作用:

它会默认查找位于:WEB-INF/下的是否有一个文件名称为:applicationContext.xml,spring必须要配置的元素有时会要把xml文件集中放在一个地方,这个时候就需要配置下:
web.xml配置的话:

<context-param>  
        <param-name>  
            contextConfigLocation  
        </param-name>  
        <param-value>  
            classpath*:**/*Context.xml  
        </param-value>  
    </context-param>  

web.xml配置的:

public class DefaultConfigration implements WebApplicationInitializer {  
  
    @Override  
    public void onStartup(ServletContext context) throws ServletException {  
        context.addListener(new ContextLoaderListener());  
        context.addListener(new WebAppRootListener());  
        context.setInitParameter("contextConfigLocation", "classpath*:**/*Context.xml");  
    }  
  
}  
上一篇下一篇

猜你喜欢

热点阅读