list
struts.properties 常用配置檔案
字符集只搜尋特定package下的action
指定載入頁面的目錄
返回的頁面型別
忽略某些包
convention預設的根packages
指定spring自動裝載
指定struts的副檔名
指定struts的開發模式
指定struts的資源檔案自動過載
指定struts的國際化資源檔案
指定struts的配置檔案是否自動過載
指定struts的模板
public class helloworld extends actionsupport
publicstring execute()
return success;
success 對應 hello-world.jsp
zero 對應 hello-world-zero.jsp
@action(interceptorrefs=)
@parentpackage
在第主個頁面之中
在模板頁中可以引用
hibernateopensessioninviewfilter
org.springframework.orm.hibernate3.support.opensessioninviewfilter
hibernateopensessioninviewfilter
/*contextconfiglocation
org.springframework.web.context.contextloaderlistener
org.springframework.web.util.introspectorcleanuplistener
sitemesh
org.apache.struts2.sitemesh.freemarkerpagefilter
freemarker 副檔名是ftl
strutscleanup
org.apache.struts2.dispatcher.actioncontextcleanup
sitemesh
com.opensymphony.module.sitemesh.filter.pagefilter
struts2filter
org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter
strutscleanup
/*sitemech
/*struts2filter/*-
encodingfilter
org.springframework.web.filter.characterencodingfilter
encoding
utf-8
forceencoding
true
encodingfilter
/*list
struts.properties 常用配置檔案
字符集只搜尋特定package下的action
指定載入頁面的目錄
返回的頁面型別
忽略某些包
convention預設的根packages
指定spring自動裝載
指定struts的副檔名
指定struts的開發模式
指定struts的資源檔案自動過載
指定struts的國際化資源檔案
指定struts的配置檔案是否自動過載
指定struts的模板
public class helloworld extends actionsupport
publicstring execute()
return success;
success 對應 hello-world.jsp
zero 對應 hello-world-zero.jsp
@action(interceptorrefs=)
@parentpackage
在第主個頁面之中
在模板頁中可以引用
hibernateopensessioninviewfilter
org.springframework.orm.hibernate3.support.opensessioninviewfilter
hibernateopensessioninviewfilter
/*contextconfiglocation
org.springframework.web.context.contextloaderlistener
org.springframework.web.util.introspectorcleanuplistener
sitemesh
org.apache.struts2.sitemesh.freemarkerpagefilter
freemarker 副檔名是ftl
strutscleanup
org.apache.struts2.dispatcher.actioncontextcleanup
sitemesh
com.opensymphony.module.sitemesh.filter.pagefilter
struts2filter
org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter
strutscleanup
/*sitemech
/*struts2filter/*-
encodingfilter
org.springframework.web.filter.characterencodingfilter
encoding
utf-8
forceencoding
true
encodingfilter
/*
struts2 註解配置
struts2基於註解的action配置 使用註解來配置action的最大好處就是可以實現零配置,但是事務都是有利有弊的,使用方便,維護起來就沒那麼方便了。要使用註解方式,我們必須新增乙個額外包 struts2 convention plugin 2.x.x.jar。雖說是零配置的,但struts....
struts2常量配置
struts2常量配置 1.在struts.xml中配置。例如 2.在struts.properties中配置,該檔案的內容就是系列的key value對。例如 struts.devmode true 指定了struts2應用處於開發階段 3.在web.xml中配置struts2常量,可以通過元素的...
struts2配置詳解
在配置struts 時,如果除了核心 外還有其他 其他 需要放在核心 之前。struts2中action開發的幾種方式 1 繼承actionsupport packagecn.test.user importcom.opensymphony.xwork2.actionsupport publiccl...