81,122
社区成员




<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
<struts-config>
<form-beans>
<form-bean name="saveProductForm" type="mystruts.actionform.ProductForm"></form-bean>
<form-bean name="searchProductForm" type="mystruts.actionform.ProductForm"></form-bean>
</form-beans>
<global-forwards>
<forward name="newProduct" path="/mystruts/newProduct.jsp"></forward>
<forward name="searchProduct" path="/mystruts/searchProduct.jsp"></forward>
</global-forwards>
<action name="saveProductForm" path="/saveProduct" scope="request" type="mystruts.action.SaveProductAction">
<forward name="save" path="/mystruts/save.jsp"></forward>
</action>
<action name="searchProductForm" path="/searchProduct" scope="request" type="mystruts.action.SearchProductAction">
<forward name="search" path="/mystruts/search.jsp"></forward>
</action>
<message-resources parameter="struts.ApplicationResources"></message-resources>
</struts-config>
<context docbase="D:\workspace\samples" path="/samples" reloadable="true">