我的项目使用struts1和struts2框架,我需要更改用户友好的URL。是否有任何插件可以从网址中删除.action和.do扩展名。?
请附上文档链接以及评论。 在此先感谢。
答案 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应用程序,我不担心。