JWS-指定POJO类的字段以进行响应

时间:2018-11-11 15:51:50

标签: java java-web-start

我有以下POJO类,其中包含用于所有内容的getter和setter:

public class Trip {
    private String name;
    private int capacity;
    private int id;
    private int present;

    public Trip(int id, String name, int capacity) {
        this.id = id;
        this.name = name;
        this.capacity = capacity;
        this.present = 0;
    }
}

返回这些类中的ArrayList时,仅包含idnamecapacity。 JWS方法如下所示:

@WebMethod
public ArrayList<Trip> getAllTrips(){
    // return ArrayList of all trips
}

如何说服present字段出现在输出XML中?

0 个答案:

没有答案