You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
2 years ago
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
|
||
|
<!DOCTYPE struts PUBLIC
|
||
|
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
|
||
|
"http://struts.apache.org/dtds/struts-2.5.dtd">
|
||
|
|
||
|
<struts>
|
||
|
<constant name="struts.i18n.reload" value="false"/>
|
||
|
<constant name="struts.devMode" value="false"/>
|
||
|
<constant name="struts.action.extension" value="do,,"/>
|
||
|
|
||
|
<!--不拦截servlet-->
|
||
|
<constant name="struts.action.excludePattern"
|
||
|
value="
|
||
|
/wx,
|
||
|
/is_auth,
|
||
|
/u_auth,
|
||
|
/b_auth,
|
||
|
/q,
|
||
|
/qrpay,
|
||
|
/ext/tj,
|
||
|
/notify/wx_pay_notify_servlet,
|
||
|
/notify/wx_native_pay_notify_servlet,
|
||
|
/notify/bcm_pay_notify_servlet,
|
||
|
/old_pay_notify_servlet,
|
||
|
/createmenu"/>
|
||
|
|
||
|
<package name="default" extends="struts-default">
|
||
|
<interceptors>
|
||
|
<interceptor name="servletConfig" class="com.ynxbd.common.config.interceptor.MethodInterceptor"/>
|
||
|
|
||
|
<interceptor-stack name="method_stack">
|
||
|
<interceptor-ref name="servletConfig"/>
|
||
|
<interceptor-ref name="defaultStack"/>
|
||
|
</interceptor-stack>
|
||
|
</interceptors>
|
||
|
|
||
|
<default-interceptor-ref name="method_stack"/>
|
||
|
</package>
|
||
|
|
||
|
</struts>
|