struts2中的用户友好URL

时间:2013-05-15 06:10:08

标签: java struts tomcat6

我的项目使用struts1和struts2框架,我需要更改用户友好的URL。是否有任何插件可以从网址中删除.action和.do扩展名。?

请附上文档链接以及评论。 在此先感谢。

1 个答案:

答案 0 :(得分:1)

您可以通过添加

来更改struts 2中的操作扩展名
<constant name="struts.action.extension" value=".foo"/> 

struts.xml文件(或属性文件等)

要删除它,请提供空值。

<constant name="struts.action.extension" value=""/> 

资源:http://struts.apache.org/release/2.0.x/docs/strutsproperties.html

但扩展名不应过于担心,除非您正在设计一个用户可以通过网址访问网页的网站。

对于普通的Web应用程序,我不担心。