Liquibase diffChangeLog 针对 Hibernate 映射定义

发布于 2024-09-06 15:58:42 字数 420 浏览 6 评论 0原文

这个问题与“Hibernate使用JPA(带注释的实体)和liquibase”。

我实际上想知道在针对 Hibernate 映射定义进行 Liquibase diff 时会发生什么。

它似乎产生了什么: 一个 liquibase 变更日志,它将我的休眠映射的状态迁移到数据库的当前映像。

我所希望的: liquibase 变更日志,它迁移现有(旧)数据库以反映我的(新)休眠映射中的更改。

我期待错误的事情吗?或者我做错了什么?

谢谢你让我知道! J。

This question is related to "Hibernate using JPA (annotated Entities) and liquibase".

I was actually wondering what to expect when doing a Liquibase diff against a Hibernate mapping definition.

What it seems to produce: A liquibase changelog that migrates the state of my hibernate mappings to the current image of the database.

What I was hoping for: A liquibase changelog that migrates the existing (old) database to reflect the changes in my (new) hibernate mappings.

Am I expecting the wrong thing? or am I doing something wrong?

Thank you for letting me know!
J.

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

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

发布评论

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

评论(1

风吹短裙飘 2024-09-13 15:58:42

答案太明显了...

这只是翻转基础系统和目标系统的问题:-)

 --username=un \
 --password=pw \
 --url=jdbc:mysql:///mydb \
 diffChangeLog \
 --baseUrl="hibernate:/hibernate.hbm.xml"

变成:

 --url="hibernate:/hibernate.hbm.xml" \
 diffChangeLog \
 --baseUrl=jdbc:mysql:///mydb \
 --baseUsername=un \
 --basePassword=pw

抱歉!
睡觉时间到了:-)

The answer was too obvious...

It was just a matter of flipping the base- and target system :-)

 --username=un \
 --password=pw \
 --url=jdbc:mysql:///mydb \
 diffChangeLog \
 --baseUrl="hibernate:/hibernate.hbm.xml"

becomes:

 --url="hibernate:/hibernate.hbm.xml" \
 diffChangeLog \
 --baseUrl=jdbc:mysql:///mydb \
 --baseUsername=un \
 --basePassword=pw

Sorry!
Time for sleep :-)

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