Hibernate生成表结构两种方式

网友投稿 880 2022-10-14

Hibernate生成表结构两种方式

Hibernate生成表结构两种方式

生成表结构两种方式: 1,hbm2ddl.auto 自动生成表结构 update 2,使用SchemaExport工具类 //根据配置生成表结构 Configuration cfg = new Configuration().configure(); SchemaExport schemaExport = new SchemaExport(cfg); //第一个参数script的作用: print the DDL to the console(打印生成脚本到控制台) //第二个参数export的作用: export the script to the database(导出生成脚本到数据库) schemaExport.create(true, false);

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:JDK7新特性_JDK7的六个新特性
下一篇:bzfshop- B2C 商城开源程序
相关文章

 发表评论

暂时没有评论,来抢沙发吧~