首页 > 编程 > JSP > 正文

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

2020-07-27 21:41:56
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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的配置文件是什么数据库方言和驱动,将生成什么数据库脚本。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表