zoukankan      html  css  js  c++  java
  • Struts2 spring 多配置文件使用通配符

    过年了但是并没有回家,策划着为公司搞一套完整的开发框架(UT),很久都没有搞程序了,显然觉得非常生疏了。把经验分享给大家

    spring:

    这个比较简单,因为spring的初衷即如此设计

       <!--Spring-->

        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
            <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:applicationContext.xml,classpath:*Context.xml,classpath:/*/*Context.xml</param-value>
        </context-param>

    Struts2:

    这个就比较麻烦了,首先的从xwork说起,版本要在2.1以上,试了在web.xml中配,在试了几次准备放弃的时候在struts.xml中配置成功:

     <?xml version="1.0" encoding="UTF-8" ?>

    <!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd"
    >
    <struts>
        
        <constant name="struts.enable.DynamicMethodInvocation" value="true" />
        <constant name="struts.devMode" value="false" />
        
        <!-- 交给spring管理 -->
        <constant name="struts.objectFactory" value="spring" />
        
        <!--加载所有Struts2配置文件-->
        <include file="*/struts.xml"/>  
        
        <package name="struts-ut" extends="struts-default">    

        </package>
    </struts>

    在贴一个在web.xml中指定struts2默认找配置文件的方法(前几天公司有个同事给我们上了一课,据说默认找的配置文件不能改)

      <!--Struts2-->
      <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
        <init-param>     
           <param-name>config</param-name>     
           <param-value>struts-default.xml,struts-plugin.xml,struts.xml</param-value>     
        </init-param>  
      </filter>
      
      <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>*.action</url-pattern>
      </filter-mapping>
     
  • 相关阅读:
    自然语言处理1-1 算法时间复杂度
    tensorflow2.0(1):简介
    基于PKCS#11的应用架构
    数字证书应用改造需求调研-2015-10-19
    签名验证工具Aloaha Sign
    PDF签名应用研究小结
    用bcp导sql server数据到excel文件
    无线网卡和有线网卡的嗅探模式的区别
    Tomcat6源代码在Eclipse里调试简要说明
    OpenLDAP 主从复制配置
  • 原文地址:https://www.cnblogs.com/jifeng/p/2328614.html
Copyright © 2011-2022 走看看