MOxy @XmlReadOnly注释

时间:2014-07-22 21:19:35

标签: jaxb jersey moxy jersey-1.0

我在Glassfish 3.1.2上使用Jersey 1.18,我试图将属性设为只读。我已经使用了MOxy @XmlReadOnly,但它被封送了。

@XmlReadOnly
private String password;

有什么可以做的吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

documentation of @XmlReadonly所述,添加@XmlElement也解决了我的问题:

@XmlElement
@XmlReadOnly
private String password;
相关问题