81041
2019-06-24 797038b15180e4f757e4ef84ae4e5cb323fd99ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
    "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
    <!-- 配置开发模式 -->
    <constant name="struts.devMode" value="false"></constant>
    
    <constant name="struts.custom.i18n.resources" value="global"/>
    
    <constant name="struts.multipart.maxSize" value ="1024000000" />
    
    <package name="default" namespace="/" extends="json-default" >
    
        <action name="*!*" class="com.fgkj.actions.{1}" method="{2}">
            <result type="json"></result>
        </action>
   </package>
</struts>