Spring Boot 2.1-无法使用hbm2ddl.auto创建表

时间:2019-01-11 11:39:39

标签: hibernate spring-boot

我从Spring Boot 2.1.1开始一个项目,我通常使用这个application.properties来创建或更新数据库表。 我正在使用MySQL数据库

spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.initialization-mode=always
spring.jpa.hibernate.ddl-auto=update

有了这个属性,我能够使用Spring boot 1.5更新架构,现在应用程序启动了,但是没有进行任何更新。

我为迁移指南添加了the spring.datasource.initialization-mode=always道具,但没有任何变化...

如果我选择createcreate-drop,我会发现Spring尝试运行模式文件...所以问题就出在update

0 个答案:

没有答案