1

我试图让 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 会转义引号。

4

1 回答 1

1

我在这个线程中找到了解决方案:

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

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

于 2013-07-25T09:45:59.610 回答