读书人

导出hbm to ddl 种

发布时间: 2012-09-04 14:19:30 作者: rapoo

导出hbm to ddl 类

import org.hibernate.cfg.Configuration;import org.hibernate.tool.hbm2ddl.SchemaExport;public class ExportDB {public static void main(String[] args) {   Configuration cfg = new Configuration().configure();     SchemaExport export = new SchemaExport(cfg);     export.create(true, true);}}
?

读书人网 >编程

热点推荐