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>  
    坚持,坚持,再坚持。
  • 相关阅读:
    【371】Twitter 分类相关
    【370】Python列表生成式(for 写入一行)
    Netbeans 中的编译器相关配置
    SP*
    du 命令
    闲杂
    Shell重定向&>file、2>&1、1>&2的区别
    Shell编程中Shift的用法
    shell中一维数组值得获取
    shell expr的用法
  • 原文地址:https://www.cnblogs.com/walk-the-Line/p/4917627.html
Copyright © 2011-2022 走看看