Struts2教學
Struts2快速入門
Struts2 MVC架構
Struts2 是什麼?
Struts2 環境配置
Struts2 體系結構
Struts2 Hello World 實例
Struts2 配置文件
Struts2 Action/動作
Struts2 攔截器
Struts2 結果和結果類型
Struts2 值棧/OGNL
Struts2 文件上傳
Struts2 MySQL數據庫訪問
Struts2 發送郵件Email
Struts2 驗證框架
Struts2 基於XML校驗
Struts2 本地化/國際化(i18n)
Struts2 類型轉換
Struts2 主題和模板
Struts2 異常處理
Struts2 註釋
Struts2 註釋類型
Struts2 控件標籤
Struts2 iterator標籤
Struts2 if/else標籤
Struts2 merge標籤
Struts2 append標籤
Struts2 generator標籤
Struts2 數據標籤
Struts2 action標籤
Struts2 include標籤
Struts2 bean 標籤
Struts2 date 標籤
Struts2 param 標籤
Struts2 property 標籤
Struts2 set 標籤
Struts2 text 標籤
Struts2 url標籤
Struts2 表單標籤
Struts2 Ajax 標籤
Struts2和Spring集成
Struts2和Tiles集成
Struts2和Hibernate集成
Struts 2 hello world (XML版本)
Struts2註解示例
Struts2 @ResultPath註釋示例
Struts2 include(包含)多個配置文件
Struts2命名空間配置和解釋
Struts2開發者模式
如何刪除Struts2動作的後綴擴展名
使用Struts2動作
Struts2的ActionError&ActionMessage示例
Struts2模型驅動實例
Struts2映射攔截動作
Struts2重寫攔截器參數
Struts2攔截器棧的例子
Struts2 execAndWait攔截器例子
Struts2 <s:textfield>文本示例
Struts2 <s:password>密碼示例
Struts2 <s:hidden>隱藏值例子
Struts2 <s:textarea>文本域實例
Struts2 <s:radio>單選按鈕例子
Struts2單選預選按鈕值
Struts2 <s:checkbox>複選框例子
Struts2設置多個複選框缺省值
Struts2 <s:checkboxlist>多個複選框例子
Struts2 <s:select>下拉框例子
Struts2自動選擇下拉框的值
Struts2 <s:combobox>組合框的例子
Struts2 <s:head>示例
Struts2文件上傳例子
Struts2上傳多個文件例子
Struts2 <s:doubleselect>示例
Struts2 <s:updownselect>示例
Struts2 <s:optiontransferselect>示例
Struts2 <sx:datetimepicker>示例
Struts2 <sx:autocompleter>自動提示例子
Struts2 autocompleter+JSON例子
Struts2 <s:iterator>迭代器標籤示例
Struts2 if,elseif,else標籤示例
struts2 <s:append>標籤示例
Struts2 <s:generator>標籤示例
Struts2 <s:merge>標籤示例
Struts2 <s:sort>標籤示例
Struts2 <s:subset>標籤示例
Struts2 <s:a>標籤示例
Struts2 <s:action>標籤示例
Struts2 <s:bean>標籤示例
Struts2 <s:date>標籤示例
Struts2 <s:debug>標籤示例
Struts2 <s:include>標籤示例
Struts2 <s:i18n>標籤示例
Struts2 <s:param>標籤示例
Struts2 <s:property>標籤實例
Struts2 <s:push>標籤示例
Struts2 <s:set>標籤示例
Struts2 <s:texttag>標籤示例
Struts2 <s:url>標籤示例
Struts2資源包使用示例
Struts2本地化和國際化
Struts2 key鍵屬性示例
Struts2中文本地化問題
如何配置Struts2全局資源包
Struts2+Spring集成實例
Struts2+Quartz2調度集成實例
Struts2+Hibernate使用Full Hibernate Plugin集成
Struts2+Hibernate集成實例
Struts2+Spring+Hibernate集成實例
Struts2+Log4j集成
Struts2的FilterDispatcher和StrutsPrepareAndExecuteFilter有什麼不同?
Struts2獲取HttpServletRequest實例
Struts2獲取HttpServletResponse實例
如何獲取ServletContext對象
Struts2配置Action類的靜態參數
Struts2下載文件實例
Struts2和JSON實例

Struts2和JSON實例

在這個Struts2例子,將學習如何通過「struts2-json-plugin.jar」庫將對象轉換爲JSON格式的數據。

1. Action (JSON)

這是一個將被轉換成JSON格式的 Action 類。

package com.yiibai.common.action;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.opensymphony.xwork2.Action;

public class JSONDataAction{

private String string1 = "A";
private String\[\] stringarray1 = {"A1","B1"};
private int number1 = 123456789;
private int\[\] numberarray1 = {1,2,3,4,5,6,7,8,9};
private List<String> lists = new ArrayList<String>();
private Map<String, String> maps = new HashMap<String, String>();

//no getter method, will not include in the JSON
private String string2 = "B";

public JSONDataAction(){
    lists.add("list1");
    lists.add("list2");
    lists.add("list3");
    lists.add("list4");
    lists.add("list5");

    maps.put("key1", "value1");
    maps.put("key2", "value2");
    maps.put("key3", "value3");
    maps.put("key4", "value4");
    maps.put("key5", "value5");
}

public String execute() {
           return Action.SUCCESS;
    }

public String getString1() {
    return string1;
}

public void setString1(String string1) {
    this.string1 = string1;
}

public String\[\] getStringarray1() {
    return stringarray1;
}

public void setStringarray1(String\[\] stringarray1) {
    this.stringarray1 = stringarray1;
}

public int getNumber1() {
    return number1;
}

public void setNumber1(int number1) {
    this.number1 = number1;
}

public int\[\] getNumberarray1() {
    return numberarray1;
}

public void setNumberarray1(int\[\] numberarray1) {
    this.numberarray1 = numberarray1;
}

public List<String> getLists() {
    return lists;
}

public void setLists(List<String> lists) {
    this.lists = lists;
}

public Map<String, String> getMaps() {
    return maps;
}

public void setMaps(Map<String, String> maps) {
    this.maps = maps;
}

}

3. struts.xml

要輸出JSON數據,需要聲明一個包,它擴展「json-default」,會將結果類型轉爲「json」。

4. 實例

訪問動作URL時,JSONDataAction屬性將被轉換成JSON格式。

*http://localhost:8080/struts2json/getJSONResult.action
Struts2和JSON實例
*

JSON 格式 …

{
"lists":["list-1","list-2","list-3","list-4","list-5"],
"maps":
{
"key4":"value4","key3":"value3","key5":"value5","key2":"value2","key1":"value1"
},
"number1":123456789,
"numberarray1":[1,2,3,4,5,6,7,8,9],
"string1":"A",
"stringarray1":["A1","B1"]

希望這個簡單的例子可以瞭解JSON插件在Struts2是如何工作的有一個總體的思路。不過,還是有很多有用的參數不包括在這裏,請務必閱讀  Struts2 JSON插件文檔 以獲取更多詳細信息。

下載源代碼(struts2json) –  http://pan.baidu.com/s/1bnv8l9X