如何在hibernate 5.1.0中导出模式

时间:2016-05-08 04:58:47

标签: java hibernate hibernate-5.x

我正在尝试将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

中使用此架构导出

0 个答案:

没有答案