JAXB 是否支持 xsd:restriction?
2022-09-02 03:44:40
<xs:element name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="120"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
所以我希望它像这样转换为Java代码:
public void setAge(int age){
if(age < 0 || age > 120){
//throw some exception
}
//setting the age as it is a valid value
}
在 JAXB 中可能吗?
见过一些WebService客户端存根生成器这样做可能是axis2 Webservice,但不确定。