hibernate代码生成pojo对应的表
Posted 北宫乾宇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate代码生成pojo对应的表相关的知识,希望对你有一定的参考价值。
1、创建一个Java工程然后进行hibernate的环境搭配
2、在创建一个com.test包,在包中创建一个类
package test; import org.hibernate.cfg.Configuration; import org.hibernate.tool.hbm2ddl.SchemaExport; public class CreateTable { public static void main(String[] args) { Configuration configuration = new Configuration().configure(); SchemaExport export = new SchemaExport(configuration); export.create(true, true); } }
3、在数据库中创建一个与在总配置文件设置好的数据库名相同名字的数据库
4、然后运行程序就会在数据库中创建对应的表
以上是关于hibernate代码生成pojo对应的表的主要内容,如果未能解决你的问题,请参考以下文章