Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@XmlTransient 阻止将 JavaBeans 属性映射到 XML 表示。是否有与此相反的东西,这意味着即使 WebService 未使用的方法也会被映射?如果这不可能,是否存在解决方法?
提前致谢
默认情况下,所有公共字段和属性都使用 JAXB 映射到 XML,除非它们使用@XmlTransient. 如果您只想映射显式注释的字段和属性,那么您可以使用@XmlAccessorType(XmlAccessType.NONE).
@XmlTransient
@XmlAccessorType(XmlAccessType.NONE)
了解更多信息
JPA 的 @Transient 注释可防止序列化属性被持久化。