一、Action配置中的各項默認值
<package name="csdn" namespace="/test" extends="struts-default">
<action name="helloworld" class="cn.csdn.action.HelloWorldAction" method="execute" >
<result name="success">/WEB-INF/page/hello.jsp</result>
</action>
</package>
1>如果沒有為action指定class,默認是ActionSupport。
2>如果沒有為action指定method,默認執行action中的execute() 方法。
3>如果沒有指定result的name屬性,默認值為success。
二、Action中result的各種轉發類型
<action name="helloworld" class="cn.csdn.action.HelloWorldAction">
<result name="success">/WEB-INF/page/hello.jsp</result>
</action>
result配置類似於struts1中的forward,但struts2中提供了多種結果類型,常用的類型有: dispatcher(默認值)、 redirect 、 redirectAction 、 plainText。
下面是redirectAction 結果類型的例子,如果重定向的action中同一個包下:
<result type="redirectAction">helloworld</result>
如果重定向的action在別的命名空間下:
<result type="redirectAction">
<param name="actionName">helloworld</param>
<param name="namespace">/test</param>
</result>
plaintext:顯示原始文件內容,例如:當我們需要原樣顯示jsp文件源代碼 的時候,我們可以使用此類型。
<result name="source" type="plainText ">
<param name="location">/xxx.jsp</param>
<param name="charSet">UTF-8</param><!-- 指定讀取文件的編碼 -->
</result>
在result中還可以使用${屬性名}表達式訪問action中的屬性,表達式裡的屬性名對應action中的屬性。如下:
<result type="redirect">view.jsp?id=${id}</result>
三、多個Action共享一個視圖--全局result配置
當多個action中都使用到了相同視圖,這時我們應該把result定義為全局視圖。struts1中提供了全局forward,struts2中也提供了相似功能:
<package ....>
<global-results>
<result name="message">/message.jsp</result>
</global-results>
</package>
四、為Action的屬性注入值
Struts2為Action中的屬性提供了依賴注入功能,在struts2的配置文件中,我們可以很方便地為Action中的屬性注入值。注意:屬性必須提供setter方法。
public class HelloWorldAction{
private String savePath;
public String getSavePath() {
return savePath;
}
public void setSavePath(String savePath) {
this.savePath = savePath;
}
......
}
<package name="csdn" namespace="/test" extends="struts-default">
<action name="helloworld" class="cn.csdn.action.HelloWorldAction" >
<param name="savePath">/images</param>
<result name="success">/WEB-INF/page/hello.jsp</result>
</action>
</package>
上面通過<param>節點為action的savePath屬性注入“/images”
五、指定需要Struts 2處理的請求後綴
前面我們都是默認使用.action後綴訪問Action。其實默認後綴是可以通過常量”struts.action.extension“進行修改的,例如:我們可以配置Struts 2只處理以.do為後綴的請求路徑:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.action.extension" value="do"/>
</struts>
如果用戶需要指定多個請求後綴,則多個後綴之間以英文逗號(,)隔開。如:
<constant name="struts.action.extension" value="do,go"/>
六、細說常量定義
常量可以在struts.xml或struts.properties中配置,建議在struts.xml中配置,兩種配置方式如下:
在struts.xml文件中配置常量
<struts>
<constant name="struts.action.extension" value="do"/>
</struts>
在struts.properties中配置常量
struts.action.extension=do
因為常量可以在下面多個配置文件中進行定義,所以我們需要了解struts2加載常量的搜索順序:
struts-default.xml
struts-plugin.xml
struts.xml
struts.properties
web.xml
如果在多個文件中配置了同一個常量,則後一個文件中配置的常量值會覆蓋前面文件中配置的常量值.
七、常用的常量介紹
<!-- 指定默認編碼集,作用於HttpServletRequest的setCharacterEncoding方法 和freemarker 、velocity的輸出 -->
<constant name="struts.i18n.encoding" value="UTF-8"/>
<!-- 該屬性指定需要Struts 2處理的請求後綴,該屬性的默認值是action,即所有匹配*.action的請求都由Struts2處理。
如果用戶需要指定多個請求後綴,則多個後綴之間以英文逗號(,)隔開。 -->
<constant name="struts.action.extension" value="do"/>
<!-- 設置浏覽器是否緩存靜態內容,默認值為true(生產環境下使用),開發階段最好關閉 -->
<constant name="struts.serve.static.browserCache" value="false"/>
<!-- 當struts的配置文件修改後,系統是否自動重新加載該文件,默認值為false(生產環境下使用),開發階段最好打開 -->
<constant name="struts.configuration.xml.reload" value="true"/>
<!-- 開發模式下使用,這樣可以打印出更詳細的錯誤信息 -->
<constant name="struts.devMode" value="true" />
<!-- 默認的視圖主題 -->
<constant name="struts.ui.theme" value="simple" />
<!– 與spring集成時,指定由spring負責action對象的創建 -->
<constant name="struts.objectFactory" value="spring" />
<!–該屬性設置Struts 2是否支持動態方法調用,該屬性的默認值是true。如果需要關閉動態方法調用,則可設置該屬性為false。 -->
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>
<!--上傳文件的大小限制-->
<constant name="struts.multipart.maxSize" value=“10701096"/>
八、為應用指定多個struts配置文件
在大部分應用裡,隨著應用規模的增加,系統中Action的數量也會大量增加,導致struts.xml配置文件變得非常臃腫。為了避免struts.xml文件過於龐大、臃腫,提高struts.xml文件的可讀性,我們可以將一個struts.xml配置文件分解成多個配置文件,然後在struts.xml文件中包含其他配置文件。下面的struts.xml通過<include>元素指定多個配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="struts-user.xml"/>
<include file="struts-order.xml"/>
</struts>
通過這種方式,我們就可以將Struts 2的Action按模塊添加在多個配置文件中。
九、動態方法調用
如果Action中存在多個方法時,我們可以使用!+方法名調用指定方法。如下:
public class HelloWorldAction{
private String message;
....
public String execute() throws Exception{
this.message = "我的第一個struts2應用";
return "success";
}
public String other() throws Exception{
this.message = "第二個方法";
return "success";
}
}
假設訪問上面action的URL路徑為: /struts/test/helloworld.action
要訪問action的other() 方法,我們可以這樣調用:
/struts/test/helloworld!other.action
如果不想使用動態方法調用,我們可以通過常量struts.enable.DynamicMethodInvocation關閉動態方法調用。
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>
十、使用通配符定義action
<package name=“csdn” namespace="/test" extends="struts-default">
<action name="helloworld_*" class="cn.csdn.action.HelloWorldAction" method="{1}">
<result name="success">/WEB-INF/page/hello.jsp</result>
</action>
</package>
public class HelloWorldAction{
private String message;
....
public String execute() throws Exception{
this.message = "我的第一個struts2應用";
return "success";
}
public String other() throws Exception{
this.message = "第二個方法";
return "success";
}
}
要訪問other()方法,可以通過這樣的URL訪問:/test/helloworld_other.action
十一、接收請求參數
采用基本類型接收請求參數(get/post)
在Action類中定義與請求參數同名的屬性,struts2便能自動接收請求參數並賦予給同名屬性。
請求路徑: http://localhost:8080/test/view.action?id=78
public class ProductAction {
private Integer id;
public void setId(Integer id) {//struts2通過反射技術調用與請求參數同名的屬性的setter方法來獲取請求參數值
this.id = id;
}
public Integer getId() {return id;}
}
采用復合類型接收請求參數
請求路徑: http://localhost:8080/test/view.action?product.id=78
public class ProductAction {
private Product product;
public void setProduct(Product product) { this.product = product; }
public Product getProduct() {return product;}
}
Struts2首先通過反射技術調用Product的默認構造器創建product對象,然後再通過反射技術調用product中與請求參數同名的屬性的setter方法來獲取請求參數值。
十二、類型轉換的意義
對於一個智能的MVC框架而言,不可避免的需要實現類型轉換.因為B/S(浏覽器/服務器)結構應用的請求參數是通過浏覽器發送到服務器的,這些參數不可能有豐富的數據類型,因此必須在服務器端完成數據類型的轉換
MVC框架是一個表現層解決方案,理應提供類型轉換的支持,Struts2提供了功能非常強大的類型轉換支持.
十三、表現層數據的處理
對於web應用而言,表現層主要用於與用戶交互,包括收集用戶輸入數據,向用戶呈現服務器的狀態。因此表現層的數據的流向主要有兩個方向:輸入數據和輸出數據。
對於輸入數據:則需要完成由字符串數據向多種類型數據的轉化。程序通常無法自動完成,需要在代碼中手動轉化
對於輸出數據:不管是java或是jsp都支持多種數據類型的直接輸出。
表現層另外一個數據處理是:數據校驗,分為客戶校驗和服務器端校驗.後邊會重點講解
十四、類型轉換
HTTP參數都是字符串類型。 保存的數據可能是字符串、數字、布爾、日期時間等或者JavaBean類型。 手工的類型轉換,比如將字符串轉換為日期,通過: 通過request.getParameter方法獲取字符串; 檢查是否為空; 通過DateFormat.parse方法將字符串轉換為Date對象
十五、Struts2類型轉換
Struts2內置的類型轉換
String和boolean 完成字符串與布爾值之間的轉換
String和char 往常字符串與字符之間的轉換
String和int、Integer 完成字符串與整型之間的轉換
String和Long 完成字符串與長整型值之間的轉換
String和double、Double 完成字符串與雙精度浮點值的轉換
String和Float 完成字符串和單精度浮點之間的轉換
String和Date 完成字符串和日期類型之間的轉換,日期格式使用格式用戶請求所在Locale的SHORT格式
String和數組 在默認的情況,數組元素是字符串,如果用戶定義類型轉換器,也可以是其它復合數據類型
String和Map、List
十六、Struts類型轉換的API
Struts2的類型轉換器實際上是基於OGNL實現的,在OGNL項目中有一個ognl.TypeConverter接口,這個接口就是實現類型轉換器必須實現的接口。該接口定義如下:
public interface TypeConverter {
public Object convertValue(Map arg0, Object arg1, Member arg2, String arg3,
Object arg4, Class arg5) {
return null;
}
實現類型轉換器必須實現上面的TypeConverter,不過上面的接口裡的方法過於復雜,所以OGNL項目還提供了一個該接口實現類:ognl.DefaultTypeConverter,通過繼承該類實現自己類型轉換器.該類定義如下:
public class DefaultTypeConverter extends Object implements TypeConverter{
public Object convertValue(Map<String,Object> context, Object value, Class toType) {
}
……//其他的方法
}
ConvertValue方法的作用
該方法完成類型轉換,不過這種類型轉換是雙向的,當需要把字符串轉化對象實例時,通過該方法實現,當把對象實例轉換成字符串時也通過該方法實現。這種轉換是通過toType參數類型是需要轉換的目標類型。所以可以根據toType參數來判斷轉換方向。
ConvertValue方法參數和返回意義
第一個參數:context是類型轉換環境的上下文
第二個參數:value是需要轉換的參數,根據轉換方向的不同value參數的值也是不一樣的。
第三個參數:toType是轉換後的目標類型
該方法的返回值是類型轉換後的值。該值的類型也會隨著轉換的方向的改變而改變。由此可見轉換的convertValue方法接受需要轉換的值,需要轉換的目標類型為參數,然後返回轉換後的目標值
Value為什麼是一個字符串數組?
對於DefaultTypeConverter轉換器而言,它必須考慮到最通用的情形,因此他把所有請求參數都視為字符串數組而不是字符串。相當於getParameterValues()獲取的參數值