79234821

Date: 2024-11-28 17:21:54
Score: 1
Natty:
Report link

In my case:

Caused by: org.springframework.beans.factory.BeanCreationException:
 Error creating bean with name 'flywayInitializer' defined in class path resource
 [org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration$FlywayConfiguration.class]:
 Unsupported Database: MySQL 8.4

All I had to do is replace in build.gradle the dependencies line:

    implementation 'org.flywaydb:flyway-core'

with:

    implementation 'org.flywaydb:flyway-mysql'

Courtesy: https://documentation.red-gate.com/flyway/flyway-cli-and-api/supported-databases/mysql

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sfinja