hibernate工具箱—根据映射文件自动建表

  1. public class ExportDB {   
  2.     public static void main(String[] args) {   
  3.         //读取hibernate.cfg.xml文件   
  4.         Configuration cfg=new Configuration().configure();   
  5.         SchemaExport export=new SchemaExport(cfg);   
  6.         export.create(truetrue);   
  7.     }   
  8. }  

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