嗨,我需要将数据库架构保存在文件中。就像Hibernate在其hbm文件中一样(保存表名,列名和类型以及主外键)是否有一种模式可以实现?

最佳答案

您可以使用Hibernate类org.hibernate.tool.hbm2ddl.SchemaExport

您可以将其传递给您的Hibernate配置,然后使用方法execute()来打印架构。

这是一个代码示例:

Configuration cfg = new Configuration();
cfg.addResource(mappingFile);  // mapping to your hibernate mapping xml
cfg.setProperties(props);  // hibernate configuration properties, like dialect, connection url, etc.

SchemaExport schemaExport = new SchemaExport(cfg);
schemaExport.setDelimiter(";");
schemaExport.setOutputFile("database-script.sql");
schemaExport.setFormat(true);
schemaExport.execute(false, false, false, true);

09-26 21:40