注意:我是
EclipseLink JAXB (MOXy)领导者,也是
JAXB 2 (JSR-222)专家组的成员.
Can Castor do this? If so, what would be the Ant task syntax for it.
If not, would perhaps JAXB be a better alternative?
下面是如何使用JAXB完成此操作的示例:
产品
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/Product"
xmlns:tns="http://www.example.org/Product"
elementFormDefault="qualified">
由于多个XML模式导入Product.xsd,因此我们可以利用episode文件,以便只生成一次与Product.xsd相对应的类.
xjc -d out -episode product.episode Product.xsd
ProductPurchaseRequest.xsd
下面是导入Product.xsd的XML模式的示例:
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/ProductPurchaseRequest"
xmlns:tns="http://www.example.org/ProductPurchaseRequest"
xmlns:prod="http://www.example.org/Product"
elementFormDefault="qualified">
当我们从这个XML模式生成类时,我们将引用我们从Product.xsd生成Java类时创建的剧集文件.
xjc -d out ProductPurchaseRequest.xsd -extension -b product.episode
ProductQuoteRequest.xsd
下面是导入Product.xsd的XML模式的另一个示例:
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/ProductQuoteRequest"
xmlns:tns="http://www.example.org/ProductQuoteRequest"
xmlns:prod="http://www.example.org/Product"
elementFormDefault="qualified">
再次,当我们从这个XML模式生成类时,我们将引用我们从Product.xsd生成Java类时创建的剧集文件.
xjc -d out ProductQuoteRequest.xsd -extension -b product.episode
了解更多信息