From 033c78b9459c3a448dc4d50b904f1fdffdae0bd5 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Wed, 11 Nov 2020 20:30:56 +0100 Subject: [PATCH] Fix link to Flyway callback docs See gh-24119 --- .../spring-boot-docs/src/main/asciidoc/howto.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index 7196f443a02..1fd4ae01fdc 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2093,7 +2093,7 @@ If you need more control over the configuration, consider registering a `FlywayC Spring Boot calls `Flyway.migrate()` to perform the database migration. If you would like more control, provide a `@Bean` that implements {spring-boot-autoconfigure-module-code}/flyway/FlywayMigrationStrategy.java[`FlywayMigrationStrategy`]. -Flyway supports SQL and Java https://flywaydb.org/documentation/callbacks.html[callbacks]. +Flyway supports SQL and Java https://flywaydb.org/documentation/concepts/callbacks[callbacks]. To use SQL-based callbacks, place the callback scripts in the `classpath:db/migration` folder. To use Java-based callbacks, create one or more beans that implement `Callback`. Any such beans are automatically registered with `Flyway`.