zoukankan      html  css  js  c++  java
  • Web项目中加载Spring配置的常用方法

    1、web.xml中添加配置

    <web-app>  
       <context-param>  
          <param-name>contextConfigLocation</param-name>  
          <param-value>/WEB-INF/applicationContext-*.xml</param-value>  
          <!--<param-value>classpath*:applicationContext-*.xml</param-value>-->  
      </context-param>  
    <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
     </listener>  
    </web-app>  

    2、web.xml中添加配置

    <web-app>  
       <context-param>  
          <param-name>contextConfigLocation</param-name>  
          <param-value>/WEB-INF/applicationContext-*.xml</param-value>  
       </context-param>  
       <servlet>  
          <servlet-name>SpringContextServlet</servlet-name>  
          <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>  
          <load-on-startup>1</load-on-startup>  
       </servlet>  
    </web-app>  

    3、在(struts-config.xml)中加载

     <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">  
            <set-property property="contextConfigLocation"  
                value
    ="/WEB-INF/applicationContext.xml,  
                       /WEB-INF/action-servlet.xml"
    />  
     </plug-in>  
    坚持,坚持,再坚持。
  • 相关阅读:
    交流课件
    ARC127F ±AB
    CF1566F xor-quiz
    JOISC 2016 Day 1 棋盘游戏
    dev分支和release是什么
    drf 笔记
    drf 序列化的写法 总结
    Linux系统编程
    C/C++ 网络编程
    C++提高编程
  • 原文地址:https://www.cnblogs.com/walk-the-Line/p/4917627.html
Copyright © 2011-2022 走看看