如何防止hbm2ddl导入init sql?
前提条件:
- 我的类路径中有一个 import.sql 文件。
- 属性“hibernate.hbm2ddl.auto”设置为“create”。
那么,如何在不删除导入文件或修改“hibernate.hbm2ddl.auto”属性的情况下阻止hbm2ddl导入init sql呢?
Precondition:
- There is an import.sql file in my classpath.
- The property "hibernate.hbm2ddl.auto" is set to "create".
Then, how to prevent hbm2ddl from import the init sqls, without delete the import file or modify the "hibernate.hbm2ddl.auto" property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Hibernate 3.6 开始,您可以使用 hibernate.hbm2ddl.import_files 属性覆盖导入文件的默认名称。因此,您可以在那里设置不存在的文件的名称。
Since Hibernate 3.6 you can override default name of the import file with
hibernate.hbm2ddl.import_files
property. So, you can set a name of nonexistent file there.