是否有人知道使用 Jersey 的 GET 方法返回仅返回实体的某些字段而不是全部字段的 JSON 的方法?有谁知道使用 Jersey 的 GET 方法返回只返回实体的某些字段而不是全部的 JSON 的方法?例如,在下面的课程中,我想接收(使用 POST)'name' 和 'confidential' 的值,返回时购买(使用 GET)我只需要 'name' 值,而不是 'confidential'。
@Entity
@Table(name = "a")
@XmlRootElement
@JsonIgnoreProperties({"confifentialInfo"})
public class A extends B implements Serializable {
private String name;
@Basic(optional = false)
private String confifentialInfo;
// more fields, getters and setters
}