如何阻止 JAXB 检查 ObjectFactory 类

发布于 2024-12-03 08:59:34 字数 185 浏览 0 评论 0原文

我的类加载器都会抱怨

Unable to find class resource 'com.d.xml.ObjectFactory'

每次我将对象编组到 XML 时,

。使用注释定义的映射。

是否可以配置 JAXB 以避免检查 ObjectFactory?

My classloader complains

Unable to find class resource 'com.d.xml.ObjectFactory'

every time I marshal objects to XML.

Mapping defined with annotations.

Is it possible to configure JAXB to avoid checking ObjectFactory?

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

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

发布评论

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

评论(1

溇涏 2024-12-10 08:59:34

如果您在上下文路径(包名称)上创建 JAXBContext,那么您可以通过提供一个名为 jaxb.in​​dex 的文本文件(其中包含回车符分隔的类名列表)来避免对 ObjectFactory 类的需求。有关示例,请参阅:

或者,您可以通过传入域类来创建 JAXBContext:

JAXBContext jc = JAXBContext.newInstance(Foo.class, Bar.class);

If you are creating your JAXBContext on a context path (package name), then you can avoid the need for an ObjectFactory class by providing a text file called jaxb.index with a carriage return separated list of class names. For an example see:

Alternatively you can create a JAXBContext by passing in the domain classes:

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