在哪里包含 jaxb.properties 文件?
我有 REST (Jersey) Web 服务,它使用一些编组到 XML 或从 XML 解组的数据对象。数据对象位于 Web 服务战争所依赖的单独项目/jar 中。
我使用 MOXy 作为我的 JAXB 实现,因为我正在部署到 Glassfish 并且它已经包含在内。我知道我需要一个 jaxb.properties 文件来通过以下条目将 JAXB 实现设置为 MOXy:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
问题是,jaxb.properties 文件应该包含在数据对象 jar 中还是 web 服务 war 中,或者两者都包含?
I have REST (Jersey) webservice that makes use of some data objects that are marshalled/unmarshalled to/from XML. The data objects are in a separate project/jar that the webservice war depends on.
I'm using MOXy as my JAXB implementation since I'm deploying to Glassfish and that's already included. I know I need a jaxb.properties file to set the JAXB implementation to MOXy with this entry:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
The question is, should the jaxb.properties file be included in the data object jar or in the webservice war or both?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你不想或不能使用 jaxb.properties (你有很多包,模型在外部 jar 中,你只想要 java 而没有配置文件......),你可以直接指定 JaxbContextFactory :
不要使用 : 创建上下文,
而是指定要使用的工厂 :
工厂所在位置 :
完全相同,但它是在 java 代码中显式指定,而不是在配置文件中隐式指定。
If you don't want or can not use the jaxb.properties (you have a lot of package, the model is in a external jar, you want only java and no configuration files...), you can directly specify the JaxbContextFactory :
Do not create the context using :
But instead, specify the factory to use :
where the factory is :
It is exactly the same, but it is specified explicitly in the java code instead of implicitly in a configuration file.
您将 jaxb.properties 文件与模型类打包在一起。 GlassFish 尚不包含 MOXy 捆绑包,但您可以轻松添加它。查看我的博客以获取更多信息:
You package the jaxb.properties file with your model classes. GlassFish does not include the MOXy bundle yet, but you can add it easily. Check out my blog for more info: