24 lines
782 B
XML
24 lines
782 B
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
<!DOCTYPE struts-config PUBLIC
|
|
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
|
|
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
|
|
|
|
<struts-config>
|
|
|
|
<!-- ========== Form Bean Definitions =================================== -->
|
|
<form-beans>
|
|
</form-beans>
|
|
|
|
<!-- ========== Global Forward Definitions ============================== -->
|
|
<global-forwards>
|
|
</global-forwards>
|
|
|
|
<!-- ========== Action Mapping Definitions ============================== -->
|
|
<action-mappings>
|
|
<action path="/jpfAction1" >
|
|
<forward contextRelative="true" path="/resources/jsp/done.jsp" name="gotoDone"/>
|
|
</action>
|
|
</action-mappings>
|
|
|
|
</struts-config>
|