一:在struts.xml中
<!--第一种配置-->
<constant name="struts.action.extension" value="php"></constant>
二:在struts.properties中
struts.action.extension=asp
三:在web.xml中
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<!--第三种配置-->
<init-param>
<param-name>struts.action.extension</param-name>
<param-value>do</param-value>
</init-param>
</filter>