如何从注释生成 ORM.XML 映射文件?

发布于 2024-09-25 05:57:25 字数 333 浏览 0 评论 0原文

在工作中,我们为金融服务领域相当大的实体设计解决方案,并且我们更喜欢使用 XML 格式的部署映射,因为它很容易更改,而无需重新编译

我们希望使用注释进行开发并从中生成 orm.xml 映射文件。我发现了这个概念验证注释处理器,以及类似的东西是我正在寻找的东西,但它支持大多数 JPA 注释。

我们使用 WebSphere 进行开发,因此我们更喜欢考虑 OpenJPA 实现的东西

At work, we design solutions for rather big entities in the financial services area, and we prefer to have our deployment mappings in XML, since it's easy to change without having to recompile.

We would like to do our development using annotations and generate from them the orm.xml mapping files. I found this proof of concept annotation processor, and something like that is what I'm looking for, but something that has support for most JPA annotations.

We're using WebSphere for development so we would prefer something that considers the OpenJPA implementation

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

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

发布评论

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

评论(1

看轻我的陪伴 2024-10-02 05:57:25

这是一种可能的方法:

  1. 使用带注释的类生成数据库模式
  2. 使用 OpenJPA 的
  3. "nofollow">SchemaTool使用 OpenJPA 的 ReverseMappingTool 从 XML 模式文件生成 XML 映射文件

Here is a possible approach:

  1. use the annotated classes to generate the database schema
  2. use OpenJPA's SchemaTool to reverse engineer the database schema into their XML schema file
  3. use OpenJPA's ReverseMappingTool to generate XML mapping files from the XML schema file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文