JAXB - XJC 可以将 appinfo 编译到类结构中吗?
我有一个模式,可以被几个不同的应用程序读取以生成表单;其中之一使用 JAXB/XJC 来编译其类结构。该模式包含字段友好名称的 appinfo 信息,例如:
<xs:element name="HomeAddress" type="xs:string">
<xs:annotation>
<xs:appinfo>Home address</xs:appinfo>
</xs:annotation>
</xs:element>
是否有某种方法可以让 XJC 编译此信息?
I have a schema which is read by a few different applications for form generation; one of them uses JAXB/XJC to compile its class structure. The schema contains appinfo information for friendly names of fields, eg:
<xs:element name="HomeAddress" type="xs:string">
<xs:annotation>
<xs:appinfo>Home address</xs:appinfo>
</xs:annotation>
</xs:element>
Is there some way to get XJC to compile this information in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 注释插件 将任意 Java 注释添加到架构派生类中。使用此插件,您可以管理如下语法:
您将得到如下内容:
You can use the Annotate plugin to add arbitrary Java annotations into your schema-derived classes. With this plugin you can manage a syntax like:
An you'll get something like:
我不知道如何使用 JAXB 参考实现附带的 XJC 工具来执行此操作。但是,XJC 确实允许您创建自定义插件,这可能会让您需要:
I am not aware of a way to do this using the XJC tool that comes with the JAXB reference implementation. However, XJC does allow you to create custom plugins that may let you do need to: