hibernate创建表

import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;

public class ExportDB {

	public static void main(String[] args) {
		try {
			// 读取hibernate.cfg.xml文件,默认读property文件,所以要调用configure()方法
			Configuration cfg = new Configuration().configure();
			// 将类生成,转换为DDL
			SchemaExport export = new SchemaExport(cfg);
			// 在数据库生成表
			export.create(true, true);
			
		} catch (Throwable e) {
			e.printStackTrace();
		}
	
 

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