首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

hibernate 横竖生成表

2012-10-16 
hibernate 反正生成表property namehbm2ddl.autoupdate/propertypackage aimport org.hibernate.c

hibernate 反正生成表

<property name="hbm2ddl.auto">update</property>



package a;import org.hibernate.cfg.Configuration;import org.hibernate.tool.hbm2ddl.SchemaExport;public class ExportDB {public static void main(String[] args) {Configuration configuration = new Configuration().configure();SchemaExport schemaExport = new SchemaExport(configuration);schemaExport.create(true, true);}}

热点排行