structs *.do* .action 联系、联系
Struts 2框架有两个核心配置文件,struts.xml和struts.properties,其中struts.xml文件主要负责管理应用中的Action映射,以及该Action包含的Result定义等。除此之外,Struts 2框架还包含一个struts.properties文件,该文件定义了Struts 2框架的大量属性,开发者可以通过改变这些属性来满足应用的需求。只需要修改下:
修改struts.xml文件,在<struts></struts>中加入下面这句话:
<constant name="struts.action.extension" value="shtml" />
或
<constant name="struts.action.extension" value="do" />