一 將action字尾變成html字尾
xmlversion
="1.0"
encoding
="utf-8"
?>
doctype
struts
public
"-//apache software foundation//dtd struts configuration 2.1//en"
"";>
<
struts
>
<
include
file
="helloworld.xml"
>
include
>
<
constant
name
="struts.action.extension"
value
="html"
>
constant
>
<
constant
name
="struts.enable.dynamicmethodinvocation"
value
="false"
>
constant
>
struts
>
二 測試
三 去掉action字尾
xmlversion
="1.0"
encoding
="utf-8"
?>
doctype
struts
public
"-//apache software foundation//dtd struts configuration 2.1//en"
"";>
<
struts
>
<
include
file
="helloworld.xml"
>
include
>
<
constant
name
="struts.action.extension"
value=""
>
constant
>
<
constant
name
="struts.enable.dynamicmethodinvocation"
value
="false"
>
constant
>
struts
>
四 測試
五 配置字尾的三種方式
1、在struts.xml中配置
<
constant
name
="struts.action.extension"
value
="html"
>
constant
>
2、在struts.properties中配置,而且可以配置多個字尾
struts.action.extension=action,do,struts2,
3、在web.xml中配置
大小: 19.4 kb
大小: 19.1 kb
大小: 123.8 kb
struts2更改字尾
struts2 的預設字尾是 action 雖然很直觀,但是很煩瑣。很多人喜歡將請求的字尾改為 do 在struts2中修改action字尾有兩種比較簡單的辦法 一 在 struts.properties 中修改。如你想把字尾改為 do 則 加上一行 struts.action.extension ...
修改struts2的action字尾
struts2 修改action的字尾 struts2 的預設字尾是 action 雖然很直觀,但是很煩瑣。很多人喜歡將請求的字尾改為 do 在struts2中修改action字尾有兩種比較簡單的辦法 一 在 struts.properties 中修改。至於加在第幾行,應該沒有關係,我加在第一行和最...
struts2與springMVC深入對比(一)
struts2和springmvc 都是非常優秀的mvc框架,都可以與spring進行整合,對於二者的區別的 網上有很多的文章,但是希望用自己的方式來總結一下,如果有不當的地方,歡迎共同 交流!一 核心控制器及執行原理 struts的核心控制器是strutsprepareandexecutefilt...