在Jersey REST Response中包含空字段值

时间:2015-06-10 08:53:41

标签: rest jersey

我在我的一个REST资源响应中包含了Follow类的实例。

public class GenericResponse<T> implements Serializable {
    private String message;

    private String errorMessage;

    private String errorCode = "0";

    ....
}

此类中还有其他字段,但是当字段为空或&#34; 0&#34; (作为字符串),它们在客户的响应中被省略。

如何在客户端的REST响应中包含所有字段,即使它们为null / empty / 0

其他信息: 泽西版:2.6

1 个答案:

答案 0 :(得分:1)

我用Annotation

解决了这个问题
@JsonInclude(Include.ALWAYS)

GenericResponse