我在我的spring项目中设置了休眠,一旦在我的数据库中创建了表,它就没有问题,但是我希望我的休眠自动为我创建我的表。我没有使用 xml 进行配置,我使用的是 application.properties 文件和 hibernateConfig.java 类。
应用程序属性
hibernate.format_sql = true
hibernate.dialect=org.hibernate.dialect.HSQLDialect
hibernate.show_sql=true
hibernate.hbm2ddl.auto=update
HibernateConfig.java
private Properties hibernateProperties() {
Properties properties = new Properties();
properties.put("hibernate.dialect", environment.getRequiredProperty("hibernate.dialect"));
properties.put("hibernate.show_sql", environment.getRequiredProperty("hibernate.show_sql"));
properties.put("hibernate.format_sql", environment.getRequiredProperty("hibernate.format_sql"));
properties.put("hibernate.hbm2ddl.auto", environment.getRequiredProperty("hibernate.hbm2ddl.auto"));
return properties;
}
任何建议将不胜感激!