mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
970251ff95
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1221225 13f79535-47bb-0310-9956-ffa450edef68
36 lines
1017 B
XML
36 lines
1017 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE struts PUBLIC
|
|
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
|
|
"http://struts.apache.org/dtds/struts-2.3.dtd">
|
|
|
|
<struts>
|
|
|
|
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
|
|
<constant name="struts.devMode" value="false" />
|
|
|
|
<package name="default" namespace="/" extends="struts-default">
|
|
|
|
<default-action-ref name="index" />
|
|
|
|
<global-results>
|
|
<result name="error">/error.jsp</result>
|
|
</global-results>
|
|
|
|
<global-exception-mappings>
|
|
<exception-mapping exception="java.lang.Exception" result="error"/>
|
|
</global-exception-mappings>
|
|
|
|
<action name="index">
|
|
<result type="redirectAction">
|
|
<param name="actionName">HelloWorld</param>
|
|
<param name="namespace">/example</param>
|
|
</result>
|
|
</action>
|
|
</package>
|
|
|
|
<include file="example.xml"/>
|
|
|
|
<!-- Add packages here -->
|
|
|
|
</struts>
|