如何让JAXB为固定属性创建一个getter?
<xs:attribute name="version" type="xs:string" fixed="1.2">
<xs:annotation>
<xs:appinfo>
<jx:property fixedAttributeAsConstantProperty="true"/>
</xs:appinfo>
</xs:annotation>
</xs:attribute>
它将在解组后创建一个常量值。 public final static String VERSION =&#34; 1.2&#34 ;;