Struts 2 JSON bean解析

时间:2013-07-25 08:13:46

标签: json struts2

我试图让Struts管理数据以这种方式解析为JSON:

我的豆子:

public class Person implements Serializable {
    private String name;
    private String surname;

    public Person(String name, String surname) { 
        this.name = name; 
        this.surname = surname; 
    }

    /*
     * GETTERS AND SETTERS
     * ...
     */
}

我的行动:

public class action {

    private List<Person> people;

    private String message;

    public String execute() { 
        this.message = "HELLO";
        /*
         * Initiliaze the list
         */
        return SUCCESS;
    }

    public List<Person> getPeople() { return this.people; }
    public String getMessage() { return this.message; }
}

我的struts.xml:

<struts>
    <package name="ajax-package" namespace="/ajax" extends="json-default">

        <result-types>
            <result-type name="myjson" class="org.apache.struts2.json.JSONResult">
                <param name="noCache">true</param>
            </result-type>
        </result-types>

        <action class="action" method="execute" name="action">
            <result type="myjson">
                <param name="includeProperties">
                    message, people\[\d+\]
                </param>
            </result>
        </action>
    </package>
</struts>

但是,如果我在我的列表中放入一个条目,它将以JSON形式表示一个带有唯一空条目的列表:

{"message":"HELLO","people":[{}]}

它试图使用GSON来序列化我的列表,但是struts逃脱了引用。

1 个答案:

答案 0 :(得分:1)

我在this thread中找到了解决方案:

<param name="includeProperties">
    message, people\[\d+\]\..*
</param>

这将包括可通过get方法访问的所有属性。