API (Java)
Published 16 November 2022
API
Flyway brings the largest benefits when integrated within an application. By integrating Flyway you can ensure that the application and its database will always be compatible, with no manual intervention required. Flyway checks the version of the database and applies new migrations automatically before the rest of the application starts. This is important, because the database must first be migrated to a state the rest of the code can work with.
Supported Java Versions
Java 17
Download
Maven |
<repositories> ... <repository> <id>redgate</id> <url>https://download.red-gate.com/maven/release</url> </repository> ... </repositories> <dependencies> ... <dependency> <groupId>com.redgate.flyway</groupId> <artifactId>flyway-core</artifactId> <version>10.22.0</version> </dependency> <!-- If you need Teams features then you'll need this additional dependency --> <dependency> <groupId>com.redgate.flyway</groupId> <artifactId>flyway-proprietary</artifactId> <version>10.22.0</version> </dependency> ... </dependencies> |
---|---|
Gradle |
repositories { mavenCentral() maven { url "https://download.red-gate.com/maven/release" } } dependencies { implementation "com.redgate.flyway:flyway-core:10.22.0" } |
Binary | flyway-core-10.22.0.jar md5 sha1 |
Licensing | By downloading Flyway Community you confirm that you have read and agree to the terms of the Redgate EULA. |
Please note, the groupId
changed at Flyway V10.0.0 from org.flywaydb.enterprise
to com.redgate.flyway
.
For older versions see Accessing Older Versions of Flyway Engine
Open Source Edition
Maven |
<dependencies> ... <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>10.22.0</version> </dependency> ... </dependencies> |
---|---|
Gradle |
dependencies { implementation "org.flywaydb:flyway-core:10.22.0" } |
Binary | flyway-core-10.22.0.jar md5 sha1 |
Sources | flyway-core-10.22.0-sources.jar md5 sha1 |
The Flyway Class
The central piece of Flyway's database migration infrastructure is the org.flywaydb.core.Flyway class. It is your one-stop shop for working with Flyway programmatically. It serves both as a configuration and a launching point for all of Flyway's functions.
Programmatic Configuration (Java)
Flyway is super easy to use programmatically:
import org.flywaydb.core.Flyway;
...
Flyway flyway = Flyway.configure().dataSource(url, user, password).load();
flyway.migrate();
// Start the rest of the application (incl. Hibernate)
...
See configuration for a full list of supported configuration parameters.
JDBC Drivers
You will need to include the relevant JDBC driver for your chosen database as a dependency in your Java project.
For instance in your pom.xml
for a Maven project. The version of the JDBC driver supported for each database is specified in the 'Supported Databases' list in the left hand side navigation menu.
Spring Configuration
As an alternative to the programmatic configuration, here is how you can configure and start Flyway in a classic Spring application using XML bean configuration:
<bean id="flywayConfig" class="org.flywaydb.core.api.configuration.ClassicConfiguration">
<property name="dataSource" ref="..."/>
...
</bean>
<bean id="flyway" class="org.flywaydb.core.Flyway" init-method="migrate">
<constructor-arg ref="flywayConfig"/>
</bean>
<!-- The rest of the application (incl. Hibernate) -->
<!-- Must be run after Flyway to ensure the database is compatible with the code -->
<bean id="sessionFactory" class="..." depends-on="flyway">
...
</bean>