读书人

hibernate经过对象-关系映射文件*hbm.

发布时间: 2012-10-14 14:55:07 作者: rapoo

hibernate通过对象-关系映射文件*.hbm.xml创建数据库教程

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

?

读书人网 >其他数据库

热点推荐