66

我找不到有关如何关闭 hbm2ddl 的参考资料。

4

6 回答 6

87

只是省略hibernate.hbm2ddl.auto默认的 Hibernate 不做任何事情。从参考文档:

1.1.4。休眠配置

hbm2ddl.auto选项打开将数据库模式直接自动生成到数据库中。 这也可以通过删除配置选项来关闭,或者在 SchemaExport Ant 任务的帮助下重定向到一个文件。

设置hbm2ddl.autonone(未记录)可能会生成警告,例如:org.hibernate.cfg.SettingsFactory - Unrecognized value for "hibernate.hbm2ddl.auto": none

于 2010-07-05T13:44:00.050 回答
41

您可以通过以下方式将其关闭:

hibernate.hbm2ddl.auto=none

这是无证但无价的!

于 2013-04-04T11:54:44.783 回答
12

为了弄清楚这一点,应该查看以下内容的来源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_AUTOhibernate.hbm2ddl.auto = none

于 2014-10-15T12:26:43.813 回答
5

在 hibernate.properties 中

hibernate.hbm2ddl.auto=validate

当然,配置它的位置取决于您配置休眠的方式 - 如果它是编程方式,请在此处设置属性。如果它来自 hibernate.cfg.xml:

<property name="hibernate.hbm2ddl.auto">validate</property>
于 2010-07-05T13:29:08.137 回答
3

如果您输入一个不受支持的值,它将告诉您哪些是受支持的: 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

于 2018-04-24T07:06:57.633 回答
1

此属性不是必需的。只需hibernate.hbm2ddl.auto从 xml 文件中完全删除该条目即可。

于 2018-02-23T11:01:34.100 回答