struts2 的基本工作流程:
struts2 的基本配置:
1.copy struts.xml
2.copy *.jar
3.配置 web.xml
struts2
org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter
/*
4.配置 struts.xml
①:注釋掉原有的 標籤之間的所有內容。
②:copy 標籤的所有內容。
/hello.jsp
二:
namespace :決定了 action的訪問路徑,預設為"",可以接收所有路徑的 action
namespace 可以寫為 / , 或 /*** , 或者 /***/yyy , 對應的 action 訪問路徑為 /index.action , /***/index.action , 或者 /***/yyy/index.action.
namespace 最好也用模組來進行命名
示例: struts2.xml
<?xml version="1.0" encoding="utf-8" ?>
/hello.jsp
/shutdown.jsp
/default.jsp
/student_success.jsp
/studentok_success.jsp
4.配置 struts.xml4.配置 struts.xml4.配置 struts.xml Struts2的零配置方法總結
以下內容參考網上的資料 b 間接實現零配置 b 編寫乙個基礎的action public abstract class baseaction public void settarget string target protected string render string target publi...
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常量,可以通過元素的...