Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 hibernate 备份 mysql 数据库?分享你的想法。我正在使用休眠映射 xml 与表进行 pojo 映射。
AFAIK,Hibernate不为backupor提供功能restore。
Hibernate
backup
restore
您应该如何考虑从命令行执行它,您可以通过 java 执行它。
从命令行下载 MySQL 转储
Hibernate 不提供数据库备份功能,这就是原因,
Hibernate 是一个 OR 映射工具,主要目的是使数据库对象化,这样代码开发人员就不必担心数据库交互的复杂性,也不必直接使用数据库。
数据库备份由与数据库密切合作并熟悉工具和术语的数据库管理员(而不是开发人员)进行。因此,像休眠这样的工具在这里没有任何作用。
以下是一些解决方案