使用 JPA(带注释的实体)和 liquibase 的 Hibernate

发布于 2024-07-17 21:13:11 字数 226 浏览 8 评论 0原文

liquibase 是 hibernate 的 hbm2ddl_auto 属性的完美替代品(如果您是)使用 xml 映射。 但我使用 JPA 注释(hibernate 注释)。 那么可以使用liquibase吗?

liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA annotation (hibernate annotations). Is it possible to use liquibase then?

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

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

发布评论

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

评论(1

左岸枫 2024-07-24 21:13:12

是的,Liquibase 使用 hibernate 的元数据类,无论您使用 xml 映射还是注释,这些元数据类都是相同的。 您确实需要一个 hibernate 配置文件来指向 liquibase,但您的映射可以是 xml 或 jpa 注释。 更多信息请访问 https://github.com/liquibase/liquibase-hibernate/wiki 但你可以使用“数据库 url”,例如,

hibernate:classic:com/example/hibernate.cfg.xml

如果你有一个 hibernate xml conf 文件,或者

hibernate:ejb3:myPersistenceUnit

如果你有一个 META-INF/persistence.xml,或者

hibernate:spring:com.example?dialect=org.hibernate.dialect.MySQL5Dialect

如果你想基于包含以下内容的 java 包自动生成 JPA 配置:带注释的实体。

Yes, Liquibase uses hibernate's metadata classes, which are the same whether you use xml mappings or annotations. You do need a hibernate config file to point liquibase to, but your mappings can be xml or jpa annotations. More information can be found at https://github.com/liquibase/liquibase-hibernate/wiki but you can use "database urls" such as

hibernate:classic:com/example/hibernate.cfg.xml

if you have a hibernate xml conf file or

hibernate:ejb3:myPersistenceUnit

if you have a META-INF/persistence.xml, or

hibernate:spring:com.example?dialect=org.hibernate.dialect.MySQL5Dialect

if you would like auto-generate a JPA configuration based on a java package containing annotated Entities.

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