1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?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>
<include file="file1.xml"></include>
<package name="default" namespace="/" extends="struts-default"> <default-action-ref name="error"></default-action-ref> <action name="helloworld" class="info.baitian.action.HelloWorld"> <result>/result.jsp</result> </action> <action name="love" method="love" class="info.baitian.action.HelloWorld"> <result name="error">/love.jsp</result> </action> <action name="error"> <result>/error.jsp</result> </action> </package> </struts>
|