Hibernate中利用工具类自动生成数据库表

Hibernate中利用工具类自动生成数据库表
1.建好POJO object, XML Mapping File,配置文件(hibernate.cfg.xml).

 

2.

 

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对象
        SchemaExport export = new SchemaExport(cfg);
        
        //创建数据库表
        export.create(true,true);
    }

}


你可能感兴趣的:(Hibernate,xml)