Struts – Wildcards

You need to create four action mappings for each list, add, delete and update function, and a lot of repetition.

     <action-mappings>
<action
path="/*UserAction"
type="com.mkyong.common.action.UserAction"
parameter="{1}User"
>

<forward name="success" path="/pages/{1}User.jsp"/>

</action>
    </action-mappings>


注:来自-- http://http://www.mkyong.com/

你可能感兴趣的:(struts)