Hibernate导表

此类用于Hibernate导表:

package com.jerval.util;

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

/**
 * 此类用于导出表
 * 
 * @author jerval
 */
public class ExportDB {
	public static void main(String[] args) {

		Configuration cfg = new AnnotationConfiguration().configure();

		SchemaExport export = new SchemaExport(cfg);

		export.create(true, true);
	}
}

 

你可能感兴趣的:(Hibernate)