package reidai.creator;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class CreateDB {
public static void main(String[] args) {
// 读取文件
Configuration cfg = new Configuration().configure();
// 创建SchemaExport对象
SchemaExport export = new SchemaExport(cfg);
// 创建数据库
export.create(true, true);
}
}
先要做好映射文件然后在运行class 这样的话就能够自动建立好数据库表
这个class 是不会帮你建数据库的 先要自己根据hbm.xml建立数据库 然后在运行