浏览 1930 次
锁定老帖子 主题:Hibernate_ExportDB
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-05-14
最后修改:2010-10-29
import org.hibernate.cfg.Configuration; import org.hibernate.tool.hbm2ddl.SchemaExport; /** * * @author skyqiang * */ public class ExportDB { public static void main(String[] args) { //read configuration file Configuration config = new Configuration(); //create SchemaExport object SchemaExport export = new SchemaExport(config); //create table of database export.create(true, true); } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |