servlet3.0 contextLoadListener

ContextLoadListener作用:

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

  
          
            contextConfigLocation  
          
          
            classpath*:**/*Context.xml  
          
      

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");  
    }  
  
}  

你可能感兴趣的:(servlet3.0 contextLoadListener)