忽略 JAXB 绑定中的某些元素/类

发布于 2024-11-18 21:26:17 字数 115 浏览 2 评论 0原文

我使用 Hyperjaxb 从 XML 模式生成一些带有 JPA 注释的类。我想指定给定模式 xjc 应该生成哪些元素。我无法更改 xsd 文件。我只能修改绑定.xjb。我尝试使用 hj:ignored,但没有成功。

I use Hyperjaxb to generate some classes with JPA annotations from XML schemas. I'd like to specify which elements from given schema xjc should generate. I can't change xsd file. I can modify only bindings.xjb. I tried to use hj:ignored, but without success.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的那抹悲凉 2024-11-25 21:26:17

嗯,hj:ignored答案。它允许您使 Hyperjaxb 忽略某些类。

下面是一个示例:

    <jaxb:bindings
        node="xsd:complexType[@name='issue121Type']//xsd:element[@name='simpleCollection']">
        <hj:ignored/>
    </jaxb:bindings>

自定义可以在架构中以及通过 xjb 文件进行。

例如,请参阅此项目

“没有成功”是如何表现出来的?

Well, hj:ignored is the answer. It allows you to make Hyperjaxb ignore certain classes.

Here's an example:

    <jaxb:bindings
        node="xsd:complexType[@name='issue121Type']//xsd:element[@name='simpleCollection']">
        <hj:ignored/>
    </jaxb:bindings>

Customizations work in schema as well as via xjb files.

See this project for instance.

How does "without success" reveal itself?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文