<?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="CheckClientAction_check" class="com.fgkj.actions.CheckClientAction" method="check">
|
<result name="none" type="redirect">/index.html</result>
|
<result name="success" type="redirect">/mobile/index.html</result>
|
</action>
|
|
<action name="*!*" class="com.fgkj.actions.{1}" method="{2}">
|
<result type="json"></result>
|
</action>
|
</package>
|
</struts>
|