首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

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

2012-08-24 
hibernate 映射文件生成数据库表脚本import org.hibernate.cfg.Configurationimport org.hibernate.tool.

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);
??}

热点排行