From c0500d6d62308ad6e42f1f1d636d259888893df1 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 3 Aug 2015 09:34:29 +0200 Subject: [PATCH] Add documentation for Hypermedia endpoints --- .../appendix-application-properties.adoc | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 8a9c436577..3b591657a1 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -686,10 +686,22 @@ content into your application; rather pick only the properties that you need. endpoints.trace.enabled=true # HYPERMEDIA ENDPOINTS - endpoints.docs.enabled=true endpoints.docs.curies.enabled=false - endpoints.hal.enabled=true - endpoints.links.enabled=true + endpoints.docs.enabled=true + endpoints.docs.path=/docs + endpoints.docs.sensitive=false + endpoints.flyway.enabled=true + endpoints.flyway.id=flyway + endpoints.flyway.sensitive=true + endpoints.hal.enabled=true + endpoints.hal.path= # Redirects root HTML traffic to the HAL browser + endpoints.hal.sensitive=false + endpoints.links.enabled=true + endpoints.links.path= # / if not already used, /links instead + endpoints.links.sensitive=false + endpoints.liquibase.enabled=true + endpoints.liquibase.id=liquibase + endpoints.liquibase.sensitive=false # ENDPOINTS CORS CONFIGURATION ({sc-spring-boot-actuator}/autoconfigure/MvcEndpointCorsProperties.{sc-ext}[MvcEndpointCorsProperties]) endpoints.cors.allow-credentials= # set whether user credentials are support. When not set, credentials are not supported.