From a087dbc9c36d0f4afd56788329e0bb7b76fee84f Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 7 Jul 2015 18:44:36 -0700 Subject: [PATCH] Add flyway and liquibase endpoint documentation See gh-3434 --- .../src/main/asciidoc/production-ready-features.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 7673950d4e8..4440f863dc7 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -85,6 +85,10 @@ The following endpoints are available: |Exposes properties from Spring's `ConfigurableEnvironment`. |true +|`flyway` +|Shows any Flyway database migrations that have been applied. +|true + |`health` |Shows application health information (when the application is secure, a simple '`status`' when accessed over an unauthenticated connection or full message details when authenticated). @@ -94,6 +98,10 @@ unauthenticated connection or full message details when authenticated). |Displays arbitrary application info. |false +|`liquibase` +|Shows any Liquibase database migrations that have been applied. +|true + |`logfile` |Returns the contents of the logfile (if `logging.file` or `logging.path` properties have been set). Only available via MVC.