加载spring配置文件的常用三种方法

  1方法(web.xml)

  
      contextConfigLocation
      /WEB-INF/applicationContext-*.xml
  


    org.springframework.web.context.ContextLoaderListener
 


2方法(web.xml)

  
      contextConfigLocation
      /WEB-INF/applicationContext-*.xml
  

  
      SpringContextServlet
      org.springframework.web.context.ContextLoaderServlet
      1
  


3方法在(struts-config.xml)中加载
 
                    value="/WEB-INF/applicationContext.xml,
                   /WEB-INF/action-servlet.xml"/>
 

你可能感兴趣的:(java)