我正在使用 maven-jaxb2-plugin 和 jaxb2-basics-annotate 插件从我的 xsd 自动生成 POJO。我已经成功地在 POJO 中生成了注释。我需要将注释应用于枚举中的方法,但无法弄清楚如何去做。
xsd有,
<xsd:simpleType name="DeliveryStatus">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="DeliveredToTerminal" />
<xsd:enumeration value="DeliveryUncertain" />
<xsd:enumeration value="DeliveryImpossible" />
<xsd:enumeration value="DeliveredToNetwork" />
<xsd:enumeration value="MessageWaiting" />
<xsd:enumeration value="DeliveryNotificationNotSupported" />
</xsd:restriction>
</xsd:simpleType>
生成的文件
@XmlType(name = "DeliveryStatus")
@XmlEnum
public enum DeliveryStatus {
@XmlEnumValue("DeliveredToTerminal")
DELIVERED_TO_TERMINAL("DeliveredToTerminal"),
@XmlEnumValue("DeliveryUncertain")
DELIVERY_UNCERTAIN("DeliveryUncertain"),
@XmlEnumValue("DeliveryImpossible")
DELIVERY_IMPOSSIBLE("DeliveryImpossible"),
@XmlEnumValue("MessageWaiting")
MESSAGE_WAITING("MessageWaiting"),
@XmlEnumValue("DeliveredToNetwork")
DELIVERED_TO_NETWORK("DeliveredToNetwork"),
@XmlEnumValue("DeliveryNotificationNotSupported")
DELIVERY_NOTIFICATION_NOT_SUPPORTED("DeliveryNotificationNotSupported");
private final String value;
DeliveryStatus(String v) {
value = v;
}
public String value() {
return value;
}
public static DeliveryStatus fromValue(String v) {
for (DeliveryStatus c: DeliveryStatus.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
我需要的是在上面的 value 方法中添加 JsonValue 注释。
我尝试了以下和其他一些调整,但在 binding.xjb 中没有任何效果。
<jaxb:bindings node="xs:simpleType[@name='DeliveryStatus']">
<annox:annotate target="field">
<annox:annotateEnum annox:class="org.codehaus.jackson.annotate.JsonValue"/>
</annox:annotate>
</jaxb:bindings>
有什么叫做 annotateEnum 的东西吗?它可以工作,如果可以的话如何?
请帮忙。