復制代碼 代碼如下:
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的配置文件是什麼數據庫方言和驅動,將生成什麼數據庫腳本。