Skip to content

Latest commit

 

History

History

spring-jpa-flyway

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Using Flyway for Database Migration in Spring Boot

Flyway is a popular open-source tool for managing database migrations. It makes it easier to manage and version control the database schema for your application.

Flyway supports almost all popular databases including Oracle, SQL Server, DB2, MySQL, Amazon RDS, Aurora MySQL, MariaDB, PostgreSQL and more.

In this tutorial we will create a Spring Boot application to deal with MySQL8 database migration using Flyway. This example uses Java 17, Spring Boot 3.2.4 and MySQL 8.x. For the database operation we will use Spring boot JPA.

Read full article here:

Related topics: