我正在尝试在应用程序启动时创建mysql数据库。我已经尝试过以下配置,但无法实现,请让我知道是否有人对此有所了解,
spring.jpa.hibernate.ddl-auto=none
spring.datasource.initialization-mode=always
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
答案 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)