当前位置: 代码迷 >> Web前端 >> hibernate 横竖生成表
  详细解决方案

hibernate 横竖生成表

热度:313   发布时间:2012-10-16 09:57:37.0
hibernate 反正生成表
<property name="hbm2ddl.auto">update</property>



package a;

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

public class ExportDB {
	public static void main(String[] args) {
		Configuration configuration = new Configuration().configure();

		SchemaExport schemaExport = new SchemaExport(configuration);
		schemaExport.create(true, true);
	}
}

  相关解决方案