<constant name="struts.action.extension" value="action,do,htm"/>
表示之后后缀名为action,do,htm的url才能进入struts中的的过滤器,进入过滤器先把后缀名删除后与配置文件中的action名字相匹配,如果相同,则访问此action
如http://localhost:8080/Demo/index.action.action会跳转至 <action name="show.action" class="">
2024-03-20 17:29:52
<constant name="struts.action.extension" value="action,do,htm"/>
表示之后后缀名为action,do,htm的url才能进入struts中的的过滤器,进入过滤器先把后缀名删除后与配置文件中的action名字相匹配,如果相同,则访问此action
如http://localhost:8080/Demo/index.action.action会跳转至 <action name="show.action" class="">
下一篇:Filter用户例子