我有一个 dir /schemas有许多.xsd文件,我想用我创建的自定义注释来注释String类型的每个字段。
我正在使用这个插件:“org.jvnet.jaxb2_commons:jaxb2-basics-annotate:0.6.4”。
我认为创建一个 jaxb 绑定配置将是我理想的解决方案。我试过这个:
<jaxb:bindings>
<jaxb:bindings node="xs:element[@type='xs:string']">
<annox:annotateClass>@com.myapp.model.CustomAnnotation</annox:annotateClass>
</jaxb:bindings>
</jaxb:bindings>
但徒劳无功。你能帮我吗?谢谢