spring的applicationContext.xml如何自动加载

一个web工程自动加载的配置文件只有web.xml,想要加载其他.xml必须在web.xml里面进行配置。

 

用spring的时候需要一个bean容器来管理所有的bean,所有bean默认是写在applicationContext.xml里的,在web.xml里面是这么设置的,

 

方式一:

 

    
      contextConfigLocation
      
        /WEB-INF/dispatcherServlet-servlet.xml
      

    

 

    
    
       org.springframework.web.context.ContextLoaderListener
     

    

 

是可选项,如果没有的话就加载applicationContext.xml,也可以用它指定其他配置文件。

 

方式二:

 

 
    context 
    org.springframework.web.context.ContextLoaderServlet 
    1 
 

 

这种没用过。

你可能感兴趣的:(spring的applicationContext.xml如何自动加载)