hibernate 中常用到自动生成数据表代码

package opg;

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

public class CreateTable {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Configuration cfg=new Configuration().configure();
		SchemaExport se=new SchemaExport(cfg);
		se.create(true, true);

	}

}

注:

如果在 hibernate 自动生成表时,不删除现有的表 可以在hibernate 中配置:

<prop key="hibernate.hbm2ddl.auto">update</prop>

你可能感兴趣的:(Hibernate,自动生成数据表)