struts-mailreader阅读笔记 ------ struts 支持*号通配符 批量配置

struts-mailreader是strust自己提供的sample.

支持*号通配符  具体参照文件【struts-config-registration.xml】

<action path="/edit*"
	type="org.apache.struts.webapp.example.Edit{1}Action"
	name="{1}Form"
	scope="request"
	validate="false">
	
    <forward name="success" path="{1}.jsp"/>
</action>


你可能感兴趣的:(struts,action,Path)