struts2中,扩展名的配置位于:
此文件配置了一些常量,如编码格式,文件上传大小限制等。找到如下字符串:
struts.action.extension=action,,
这一句就是struts2中关于扩展的配置了。默认配置的含义为:可识别的扩展名为.action或无扩展名
想要自定义扩展名,是在struts.xml中使用常量的方式配置,如下配置即是在默认配置的基础上添加了do这个扩展名
<!-- 配置扩展名 -->
<constant name="struts.action.extension" value="action,do,,"></constant>
来源:oschina
链接:https://my.oschina.net/u/1442002/blog/490431