java 代码
- package com.bjsxt.hibernate.one2many;
- import org.hibernate.cfg.Configuration;
- import org.hibernate.tool.hbm2ddl.SchemaExport;
- public class ExportToDB {
- /**
- * @param args
- */
- public static void main(String[] args) throws Exception{
- //读取配置文件
- Configuration cfg = new Configuration().configure();
- //创建SchemaExport对象
- SchemaExport export = new SchemaExport(cfg);
- //创建数据库表
- export.create(true,true);
- }
- }