读书人

hibernate 照射文件生成数据库表脚本

发布时间: 2012-08-24 10:00:21 作者: rapoo

hibernate 映射文件生成数据库表脚本

import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;

?

public static void main(String[] args) {
???? Configuration cfg = new Configuration().configure();
???? SchemaExport export = new SchemaExport(cfg);
???? export.create(true, true);
??}

读书人网 >其他数据库

热点推荐