我从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
道具,但没有任何变化...
如果我选择create
或create-drop
,我会发现Spring尝试运行模式文件...所以问题就出在update