hibernate 在不使用xml配置的方式生成数据库表的方法
时间:2011-02-16 来源:seed_lee
查看这个类的api可以看到,里面就有create方法,drop方法等。
这个类的用法很简单,如下的片段:
SchemaExport export= new SchemaExport(new Configuration().configure());
export.create(true, true);
当运行着两句代码的时候,hibernate就会在相应的数据库中生成hibernate.cfg.xml文件中引用的所有的映射文件中的类的映射表。
如果想详细的了解export的各个方法都有什么作用,可以参看hibernate的API org.hibernate.tool.hbm2ddl.SchemaExport这个类。
相关阅读 更多 +