我正在尝试将hibernate从5.0.3
迁移到5.1.0
。我尝试了下面链接中给出的示例,但它对我没用。
How do I export schema after upgrading Hibernate to 5.1.0?
我在hibernate 5.0.3
中导出架构的代码:
MetadataImplementor metadataImpl = (MetadataImplementor) metadata;
SchemaExport schemaExport = new SchemaExport(metadataImpl, connection);
schemaExport.execute(Target.EXPORT, SchemaExport.Type.CREATE);
现在我如何在休眠5.1.0