小蚂蚁 发表于 2021-10-24 13:55:15

根据Hibernte的cfg文件生成sql文件


public void exportHibernteToSQL(){
Configuration cfg=new Configuration().configure("/hibernate.cfg.xml");
SchemaExport schemaExport = new SchemaExport(cfg);
schemaExport.setOutputFile("d:/mysql_sql.sql");
schemaExport.create(true, false);
}

注意:Hibernate的配置文件是什么数据库方言和驱动,将生成什么数据库脚本。
https://www.uoften.com/program/jsp/20180413/47513.html
页: [1]
查看完整版本: 根据Hibernte的cfg文件生成sql文件