当同一级别的元素和属性具有相同的名称时,scalaxb 会失败
scalaxb fails when an element and an attribute at the same level having the same name
我正在尝试使用 sbt-scalaxb
to generate bindings for the FixRepository.xsd
但它不喜欢 SUBJ。
作为最后的手段,我当然可以稍微更改架构,但是否有可能调整 sbt-scalaxb
以理解原始文件?
sbt-scalaxb
不喜欢的 XSD 片段是:
xml
<xs:element name="component">
<xs:complexType>
<xs:sequence>
<xs:element ref="messageEntity" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attributeGroup ref="entityAttribGrp"/>
<xs:attribute name="id" type="id_t" use="required"/>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="type" type="ComponentType_t" use="required"/>
<xs:attribute name="repeating" type="BOOL_t" use="optional"/>
<xs:attribute name="category" type="xs:string" use="optional"/>
<xs:attribute name="abbrName" type="xs:string" use="optional"/>
<xs:attribute name="notReqXML" type="BOOL_t" use="optional"/>
<!-- would like to force a description of the component -->
</xs:complexType>
</xs:element>
我自己想通了:scalaxbAttributePrefix
setting 给 attribute properties 添加了一个前缀。
build.sbt
scalaxbAttributePrefix in (Compile, scalaxb) := Some("attr")
生成FixRepository.scala
case class Fix(
...,
components: ...fixrepo.Components,
...,
attributes: Map[String, scalaxb.DataRecord[Any]] = Map()
) {
...
lazy val attrComponents = attributes("@components").as[BOOL_t]
...
}
我正在尝试使用 sbt-scalaxb
to generate bindings for the FixRepository.xsd
但它不喜欢 SUBJ。
作为最后的手段,我当然可以稍微更改架构,但是否有可能调整 sbt-scalaxb
以理解原始文件?
sbt-scalaxb
不喜欢的 XSD 片段是:
xml
<xs:element name="component">
<xs:complexType>
<xs:sequence>
<xs:element ref="messageEntity" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attributeGroup ref="entityAttribGrp"/>
<xs:attribute name="id" type="id_t" use="required"/>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="type" type="ComponentType_t" use="required"/>
<xs:attribute name="repeating" type="BOOL_t" use="optional"/>
<xs:attribute name="category" type="xs:string" use="optional"/>
<xs:attribute name="abbrName" type="xs:string" use="optional"/>
<xs:attribute name="notReqXML" type="BOOL_t" use="optional"/>
<!-- would like to force a description of the component -->
</xs:complexType>
</xs:element>
我自己想通了:scalaxbAttributePrefix
setting 给 attribute properties 添加了一个前缀。
build.sbt
scalaxbAttributePrefix in (Compile, scalaxb) := Some("attr")
生成FixRepository.scala
case class Fix(
...,
components: ...fixrepo.Components,
...,
attributes: Map[String, scalaxb.DataRecord[Any]] = Map()
) {
...
lazy val attrComponents = attributes("@components").as[BOOL_t]
...
}