读书人

struts2.xml配备信息

发布时间: 2012-10-12 10:17:04 作者: rapoo

struts2.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="false" />
<constant name="struts.devMode" value="true" />
<constant name="struts.action.extension" value="do"/>
<constant name="struts.custom.i18n.resources" value="message" />
<constant name="struts.i18n.encoding" value="UTF-8" />
<constant name="struts.ognl.allowStaticMethodAccess" value="true" />


<package name="struts2" extends="struts-default" namespace="">
<interceptors>
<interceptor name="myinterceptor" method="test">
<result name="success">/output.jsp</result>
<interceptor-ref name="defaultStack"></interceptor-ref>
<interceptor-ref name="myinterceptor2">
<param name="includeMethods">test,execute</param>
</interceptor-ref>
<interceptor-ref name="myinterceptor"></interceptor-ref>


</action>
</package>
</struts>

读书人网 >XML SOAP

热点推荐