我找不到有关如何关闭 hbm2ddl 的参考资料。
6 回答
只是省略hibernate.hbm2ddl.auto
默认的 Hibernate 不做任何事情。从参考文档:
1.1.4。休眠配置
该
hbm2ddl.auto
选项打开将数据库模式直接自动生成到数据库中。 这也可以通过删除配置选项来关闭,或者在 SchemaExport Ant 任务的帮助下重定向到一个文件。
设置hbm2ddl.auto
为none
(未记录)可能会生成警告,例如:org.hibernate.cfg.SettingsFactory - Unrecognized value for "hibernate.hbm2ddl.auto": none
您可以通过以下方式将其关闭:
hibernate.hbm2ddl.auto=none
这是无证但无价的!
为了弄清楚这一点,应该查看以下内容的来源org.hibernate.cfg.SettingsFactory
(根据使用的版本,您可能会看到其他内容):
String autoSchemaExport = properties.getProperty( AvailableSettings.HBM2DDL_AUTO );
if ( "validate".equals(autoSchemaExport) ) {
settings.setAutoValidateSchema( true );
}
else if ( "update".equals(autoSchemaExport) ) {
settings.setAutoUpdateSchema( true );
}
else if ( "create".equals(autoSchemaExport) ) {
settings.setAutoCreateSchema( true );
}
else if ( "create-drop".equals( autoSchemaExport ) ) {
settings.setAutoCreateSchema( true );
settings.setAutoDropSchema( true );
}
else if ( !StringHelper.isEmpty( autoSchemaExport ) ) {
LOG.warn( "Unrecognized value for \"hibernate.hbm2ddl.auto\": " + autoSchemaExport );
}
在org.hibernate.cfg.Settings
类中,这些变量被初始化为:
private boolean autoCreateSchema;
private boolean autoDropSchema;
private boolean autoUpdateSchema;
private boolean autoValidateSchema;
所以这些默认为false。
省略设置应该会按照建议hibernate.hbm2ddl.auto
关闭功能,但在后一种情况下,您会在日志中收到警告。HBM2DDL_AUTO
hibernate.hbm2ddl.auto = none
在 hibernate.properties 中
hibernate.hbm2ddl.auto=validate
当然,配置它的位置取决于您配置休眠的方式 - 如果它是编程方式,请在此处设置属性。如果它来自 hibernate.cfg.xml:
<property name="hibernate.hbm2ddl.auto">validate</property>
如果您输入一个不受支持的值,它将告诉您哪些是受支持的:
o.h.b.i.SessionFactoryBuilderImpl : Unrecognized hbm2ddl_auto value : bla. Supported values include 'create', 'create-drop', 'update', 'none' and 'validate'. Ignoring
该值none
是默认值,官方支持并记录在案:
https ://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#configurations-hbmddl
此属性不是必需的。只需hibernate.hbm2ddl.auto
从 xml 文件中完全删除该条目即可。