天天看点

配置中的参数含义

配置中的参数含义:

root参数用于指定要序列化的根对象,如果省去这一配置,表示要序列化action中的所有属性

ignoreHierarchy 为false时表示要序列化根对象的所有基类

excludeProperties表示排除的序列化的属性

includeProperties表示哪些属性被序列化

Action配置:

<!-- jsonplugin的使用配置 --> 

        <!-- package要继承json-default 以加载json插件 --> 

        <action name="jsonAct" class="cn.enjoylife.prac.action.JsonAction"> 

            <result type="json"> 

                <!-- root参数用于指定要序列化的根对象,如果省去这一配置,表示要序列化action中的所有属性 --> 

                <param name="root">map</param> 

                <!-- ignoreHierarchy 为false时表示要序列化根对象的所有基类 --> 

                <param name="ignoreHierarchy">false</param> 

                <!-- 排除hello属性,使其不被序列化 --> 

                <param name="excludeProperties">hello</param> 

            </result> 

        </action>

JsonAction.java:

public class JsonAction extends ActionSupport { 

    private static final long serialVersionUID = 3870310687165227565L; 

    private int[] ints = { 100, 200 }; 

    private Map<String, Object> map = new HashMap<String, Object>(); 

    private String hello = "helloWorld"; 

    private String username = "evan";//没有getter方法,不会被序列化  

    private String password = "pwd"; 

    private String validateCode = "123456"; 

    public int[] getInts() { 

        return ints; 

    } 

    public void setInts(int[] ints) { 

        this.ints = ints; 

    } 

    @JSON(name="newMap")//重新命名  

    public Map<String, Object> getMap() { 

        return map; 

    } 

    public void setMap(Map<String, Object> map) { 

        this.map = map; 

    } 

    public String getHello() { 

        return hello; 

    } 

    public void setHello(String hello) { 

        this.hello = hello; 

    } 

    public void setUsername(String username) { 

        this.username = username; 

    } 

    @JSON(serialize=true)//这是默认值,可以省去  

    public String getPassword() { 

        return password; 

    } 

    public void setPassword(String password) { 

        this.password = password; 

    } 

    @JSON(serialize=false)//serialize参数为false,不会被序列化  

    public String getValidateCode() { 

        return validateCode; 

    } 

    public void setValidateCode(String validateCode) { 

        this.validateCode = validateCode; 

    } 

    @Override 

    public String execute() throws Exception { 

        map.put("info", "今天的雨真大啊!"); 

        return SUCCESS; 

    } 

使用jquery操作返回的json串:

$(document).ready(function(){ 

    $.getJSON( 

        "./jsonAct.action",  

        function(data){ 

            alert(data.info); 

        } 

    ); 

});

Annotation:

  1. package com.zheshou.action;   
  2. import javax.annotation.Resource;   
  3. import org.apache.struts2.convention.annotation.Action;   
  4. import org.apache.struts2.convention.annotation.Namespace;   
  5. import org.apache.struts2.convention.annotation.ParentPackage;   
  6. import org.apache.struts2.convention.annotation.Result;   
  7. import com.opensymphony.xwork2.ActionSupport;   
  8. import com.zheshou.model.Dept;   
  9. import com.zheshou.model.User;   
  10. import com.zheshou.service.DeptService;   
  11. import com.alibaba.fastjson.JSON;   
  12. @ParentPackage(value="json-default")   
  13. @Namespace(value="/")   
  14. public class SelectDeptAction extends ActionSupport {//2.ActionSupport必须有这个才行.但是可以不用Execute了  
  15.     private DeptService deptService;   
  16.     private String beginTime;   
  17.     private String endTime;   
  18.     private String Emps;   
  19.     private String result;   
  20.     public DeptService getDeptService() {   
  21.         return deptService;   
  22.     }   
  23.     @Resource(name="deptService")   
  24.     public void setDeptService(DeptService deptService) {   
  25.         this.deptService = deptService;   
  26.     }      
  27.     public String getBeginTime() {   
  28.         return beginTime;   
  29.     }   
  30.     public void setBeginTime(String beginTime) {   
  31.         this.beginTime = beginTime;   
  32.     }   
  33.     public String getEndTime() {   
  34.         return endTime;   
  35.     }   
  36.     public void setEndTime(String endTime) {   
  37.         this.endTime = endTime;   
  38.     }   
  39.     public String getEmps() {   
  40.         return Emps;   
  41.     }   
  42.     public void setEmps(String emps) {   
  43.         Emps = emps;   
  44.     }   
  45.     public String getResult() {   
  46.         return result;   
  47.     }   
  48.     public void setResult(String result) {   
  49.         this.result = result;   
  50.     }   
  51.     @Action(value="selectdept"  
  52.         ,results={@Result(   
  53.                 type="json"  
  54.                 ,params={"contentType","text/html","root","result"}//root<会带外引号>    
  55. //includeProperties Result不带字符引号   
  56. //excludeProperties 返回所有的属性   
  57.                     )}   
  58.                )   
  59.     public String execute(){   
  60.         //result= JSON.toJSONString(user).replaceAll("\"", "'");   
  61.         result=deptService.Select(Emps);   
  62.         System.out.print(result);   
  63.         return SUCCESS;   
  64.     }   
  65. }

继续阅读