创建数据源时,需要设置hbm2ddl.auto属性,以便在启动时创建/更新数据库。
Properties properties = new Properties(); properties.put("hibernate.hbm2ddl.auto", "update"); H2DataSource.setConnectionProperties(properties);
您也可以在hibernate.cfg.xml文件中设置属性
其他可能的值为:validate | 更新| 创建| 创建放置
有关此属性和其他属性的其他信息,可以在以下位置找到:http :
//docs.jboss.org/hibernate/core/3.3/reference/en/html/session-
configuration.html#configuration-
optional
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)