Hibernate学习之ExportToDB类的建立

阅读更多
java 代码
 
  1. package com.bjsxt.hibernate.one2many;   
  2.   
  3. import org.hibernate.cfg.Configuration;   
  4. import org.hibernate.tool.hbm2ddl.SchemaExport;   
  5.   
  6. public class ExportToDB {   
  7.   
  8.     /**  
  9.      * @param args  
  10.      */  
  11.     public static void main(String[] args) throws Exception{   
  12.         //读取配置文件   
  13.         Configuration cfg = new Configuration().configure();   
  14.            
  15.         //创建SchemaExport对象   
  16.         SchemaExport export = new SchemaExport(cfg);   
  17.            
  18.         //创建数据库表   
  19.         export.create(true,true);   
  20.   
  21.     }   
  22. }  

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