Mysql
 sql >> Base de données >  >> RDS >> Mysql

Spring boot - Les paramètres MySQL ne fonctionnent pas

En tant que documentation mentionné, ce qui a résolu mon problème a été l'ajout de spring.datasource.platform à application.properties . C'est ce qui m'a manqué pour initialiser le schéma en utilisant schema-{platform}.sql et data-{platform}.sql .

Donc, mon fichier final application.properties est,

spring.datasource.url = jdbc:mysql://localhost:3306/testdb?useSSL=false
spring.datasource.username = root
spring.datasource.password = password

spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1

spring.datasource.driverClassName = com.mysql.jdbc.Driver
spring.jpa.hibernate.ddl-auto = validate
spring.jpa.show-sql = true
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect

spring.datasource.platform=mysql
spring.datasource.schema=schema-mysql.sql
spring.datasource.data=data-mysql.sql
spring.datasource.initialize=true
spring.datasource.continue-on-error=true