在哪里包含 jaxb.properties 文件?

发布于 2024-10-05 22:24:56 字数 376 浏览 3 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(2

蝶舞 2024-10-12 22:24:56

如果你不想或不能使用 jaxb.properties (你有很多包,模型在外部 jar 中,你只想要 java 而没有配置文件......),你可以直接指定 JaxbContextFactory :

不要使用 : 创建上下文,

JAXBContext jaxbContext = JAXBContext.newInstance(new Class[]{Person.class, ObjectFactory.class}, properties);

而是指定要使用的工厂 :

JAXBContext jaxbContext = JAXBContextFactory.createContext(new Class[]{Person.class, ObjectFactory.class}, properties);

工厂所在位置 :

import org.eclipse.persistence.jaxb.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 :

JAXBContext jaxbContext = JAXBContext.newInstance(new Class[]{Person.class, ObjectFactory.class}, properties);

But instead, specify the factory to use :

JAXBContext jaxbContext = JAXBContextFactory.createContext(new Class[]{Person.class, ObjectFactory.class}, properties);

where the factory is :

import org.eclipse.persistence.jaxb.JAXBContextFactory;

It is exactly the same, but it is specified explicitly in the java code instead of implicitly in a configuration file.

吻泪 2024-10-12 22:24:56

您将 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:

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