如何阻止 JAXB 检查 ObjectFactory 类
我的类加载器都会抱怨
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在上下文路径(包名称)上创建 JAXBContext,那么您可以通过提供一个名为
jaxb.index
的文本文件(其中包含回车符分隔的类名列表)来避免对 ObjectFactory 类的需求。有关示例,请参阅:或者,您可以通过传入域类来创建 JAXBContext:
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: