Struts2 action的扩展名修改方法

STRUTS2 ACTION的扩展名默认为.action,在struts1.X前为.do,如果要把STRUTS2的ACTION 的扩展名也改成.do可以按如下方法做。
方法一
struts.xml

Xml代码 复制代码
  1. < struts >      
  2. < constant   name = "struts.action.extension"   value = "do"   />  //注意这里   
  3.      < package   name = "default"   extends = "struts-default"    namespace = "/example" >   
  4.      < action   name = "HelloWord"   class = "example.HelloWord" >   
  5.      < result   name = "SUCCESS" > /example/HelloWord.jsp </ result >        
  6.      </ action >   
  7.      </ package >   
  8.     <!--    
  9.     <include file="example.xml"/>      
  10.     -->   
  11.      <!-- Add packages here -->   
  12. </ struts >  

方法二

web.xml
给filter加个init-param
Xml代码 复制代码
  1. < init-param >   
  2. < param-name > struts.action.extension </ param-name >   
  3. < param-value > do </ param-value >   
  4. </ init-param >   

    方法三

    struts.properties
  5. struts.devMode=false
    struts.action.extension=do //这一句
    struts.enable.DynamicMethodInvocation=true
    struts.i18n.reload=true
    struts.ui.theme=simple
  6. struts.locale=zh_CN
    struts.i18n.encoding=UTF-8
    #struts.objectFactory=spring
    #struts.objectFactory.spring.autoWire=name
  7. struts.serve.static.browserCache=false
    struts.url.includeParams=none

你可能感兴趣的:(struts,filter,扩展,action)