sql >> Database teknologi >  >> RDS >> Mysql

Spring boot - MySQL-indstillinger virker ikke

Som Spring boot dokumentation nævnte, hvad der har løst mit problem var at tilføje spring.datasource.platform til application.properties . Det er det, jeg har manglet for at initialisere skemaet ved hjælp af schema-{platform}.sql og data-{platform}.sql .

Så min endelige application.properties fil er,

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


  1. Underlig opførsel af SUM og CONCAT i MySql

  2. Hvordan kan jeg få en liste over MySQL-databaser i PHP ved hjælp af PDO?

  3. Hvad er det korrekte indeks for at forespørge strukturer i arrays i Postgres jsonb?

  4. MySQL - Sådan laver du en Oracle RANK() OVER(ORDER BY score DESC)