码迷,mamicode.com
首页 > 数据库 > 详细

Hibernate控制台显示创建数据库表语句

时间:2016-11-30 22:59:07      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:sql   pre   建表   控制台   stat   form   span   imp   conf   

 1 package cqvie.yjq.View;
 2 
 3 import org.hibernate.Session;
 4 import org.hibernate.Transaction;
 5 import org.hibernate.cfg.AnnotationConfiguration;
 6 import org.hibernate.tool.hbm2ddl.SchemaExport;
 7 
 8 public class Test {
 9 
10     public static void main(String[] args) {
11     
12         //调用建表语句
13         exportDDL();
14         
15     }
16 
17     //建表语句
18     public static void exportDDL() {  
19         Configuration configuration = new AnnotationConfiguration().configure();   
20         SchemaExport sexport = new SchemaExport(configuration);  
21         sexport.setFormat(true);//格式化输出  
22           sexport.setDelimiter(";");      //每句sql都以;结尾  不然导入sql的时候会出现错误  
23         sexport.setOutputFile("D:\\auto.sql");  
24         sexport.create(true, true);  
25     }  
26 }

 

Hibernate控制台显示创建数据库表语句

标签:sql   pre   建表   控制台   stat   form   span   imp   conf   

原文地址:http://www.cnblogs.com/yjq520/p/6119797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!