美文网首页
hibernate 创建表工具类

hibernate 创建表工具类

作者: DamagedBoy | 来源:发表于2017-06-30 00:11 被阅读0次
class MyTest{    
public static void main(String[] args) throws Exception{     
     Configuration conf= new Configuration().configure();
    //生成并输出sql到文件(当前目录)和数据库      
     SchemaExport dbExport=new SchemaExport(conf);        
     dbExport.create(true, true);            
}
}

相关文章

网友评论

      本文标题:hibernate 创建表工具类

      本文链接:https://www.haomeiwen.com/subject/axxbcxtx.html