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.
是否可以从名称与类或其属性不同的 Java 对象生成 XSD?假设我有一个具有属性“currency”的类,并且在生成的 xsd 中我想将其重命名为“currencyType”?
许多 JAXB (JSR-222) 注释(即@XmlElement、@XmlAttribute、@XmlType等)使您能够指定一个名称来覆盖从类或属性名称派生的默认名称。
@XmlElement
@XmlAttribute
@XmlType
@XmlElement(name="currencyType") public String getCurrency() { return currency; }