| Unless I am mistaken, some configuration properties (hbm2dll.create_namespaces, hbm2dll.extra_physical_table_types) seem to be misspelled (DDL vs DLL):
- hibernate.hbm2ddl.auto
- hibernate.hbm2ddl.import_files_sql_extractor
- hibernate.hbm2ddl.schema_filter_provider
- hibernate.hbm2ddl.jdbc_metadata_extraction_strategy
- hibernate.hbm2ddl.delimiter
- hibernate.hbm2ddl.charset_name
- hibernate.hbm2ddl.halt_on_error
- hibernate.hbm2dll.create_namespaces
- hibernate.hbm2dll.extra_physical_table_types
It took me one hour to realize I had to use hibernate.hbm2dll.create_namespaces instead of hibernate.hbm2ddl.create_namespaces (which seems more correct). |