在我的 XSD 中考虑以下类型定义:
<xs:complexType name="ED" mixed="true">
<xs:complexContent>
<xs:extension base="BIN">
<!-- I cut some data here -->
</xs:extension>
</xs:complexContent>
</xs:complexType>
我发现 JAXB 很难为mixed
元素生成代码。我尝试使用<jaxb:globalBindings generateMixedExtensions="true"/>
,但它的支持不是很好,并且会生成笨拙的List<Serializable>
代码。
所以我想我可以通过我的自定义绑定修改一些元素:
<bindings
xmlns="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
version="1.0">
<bindings schemaLocation="../../processable/coreschemas/datatypes-base.xsd">
<bindings node="//xs:complexType[@mixed='true']" multiple="true">
<property>
<javaType><!-- What do I do here? --></javaType>
</property>
</bindings>
</bindings>
</bindings>
基本上,我希望所有指定mixed=true
具有自定义value
或content
字段 ( String
) 的元素在标签之间保存 CDATA。例如,对于我的ED
类型,它在 XML 中可能是这样的,title 元素ED
用作它的类型:
<title>Hello, I'm a title!</title>
应该 yieldHello, I'm a title!
作为它的内容。
我该怎么做呢?
对于那些感兴趣的人:我正在尝试为 HL7v3 CDA 规范生成代码。