Das ist wirklich die Antwort:nein Validierung, nein aktualisieren, nein Erstellung und nein Dropping findet statt, wenn Sie die Einstellung aus Ihrer Konfiguration weglassen. Der Hibernate-Quellcode ist die beste Dokumentation zu Hibernate:
// from org.hibernate.cfg.SettingsFactory line 332 (hibernate-core-3.6.7)
String autoSchemaExport = properties.getProperty(Environment.HBM2DDL_AUTO);
if ( "validate".equals(autoSchemaExport) ) settings.setAutoValidateSchema(true);
if ( "update".equals(autoSchemaExport) ) settings.setAutoUpdateSchema(true);
if ( "create".equals(autoSchemaExport) ) settings.setAutoCreateSchema(true);
if ( "create-drop".equals(autoSchemaExport) ) {
settings.setAutoCreateSchema(true);
settings.setAutoDropSchema(true);
}