自动创建数据库springboot和mysql

时间:2018-12-05 10:24:32

标签: java mysql database spring spring-boot

我正在尝试在应用程序启动时创建mysql数据库。我已经尝试过以下配置,但无法实现,请让我知道是否有人对此有所了解,

spring.jpa.hibernate.ddl-auto=none
spring.datasource.initialization-mode=always
spring.jpa.properties.hibernate.globally_quoted_identifiers=true

2 个答案:

答案 0 :(得分:1)

如果您要创建不存在的数据库,则可以在数据库配置文件中使用以下内容。

jdbc:mysql://localhost:3306/dbname?createDatabaseIfNotExist=true

否则,请确保您的应用程序属性文件中具有以下属性。

spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.hibernate.ddl-auto=update
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/dbname
spring.datasource.username=username
spring.datasource.password=password

答案 1 :(得分:0)

您应该使用实际创建架构的值来设置属性,例如:

spring.jpa.hibernate.ddl-auto=create-drop

您可能会找到更详细的参考文献here