From 01ba732a7385417e0fe4d0bb2e4b52b4cf04a3c7 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 14 Jun 2015 09:36:10 +0200 Subject: [PATCH] Consistent use of "=" for property key Closes gh-3218 --- spring-boot-docs/src/main/asciidoc/howto.adoc | 16 ++++++++-------- .../main/asciidoc/production-ready-features.adoc | 2 +- .../src/main/asciidoc/spring-boot-features.adoc | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 9ded831c6a9..ec3ffee43d9 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -414,10 +414,10 @@ typically in `application.properties` or `application.yml`. For example: [source,properties,indent=0,subs="verbatim,quotes,attributes"] ---- - server.port = 8443 - server.ssl.key-store = classpath:keystore.jks - server.ssl.key-store-password = secret - server.ssl.key-password = another-secret + server.port=8443 + server.ssl.key-store=classpath:keystore.jks + server.ssl.key-store-password=secret + server.ssl.key-password another-secret ---- See {sc-spring-boot}/context/embedded/Ssl.{sc-ext}[`Ssl`] for details of all of the @@ -837,7 +837,7 @@ default, but can easily be enabled via `application.properties`: [source,properties,indent=0,subs="verbatim,quotes,attributes"] ---- - server.tomcat.compression: on + server.tomcat.compression=on ---- When set to `on` Tomcat will compress responses with a length that is at least 2048 @@ -846,7 +846,7 @@ e.g.: [source,properties,indent=0,subs="verbatim,quotes,attributes"] ---- - server.tomcat.compression: 4096 + server.tomcat.compression=4096 ---- By default Tomcat will only compress responses with certain MIME types @@ -1168,8 +1168,8 @@ then you can do that in `application.properties` using the "logging.level" prefi [source,properties,indent=0,subs="verbatim,quotes,attributes"] ---- - logging.level.org.springframework.web: DEBUG - logging.level.org.hibernate: ERROR + logging.level.org.springframework.web=DEBUG + logging.level.org.hibernate=ERROR ---- You can also set the location of a file to log to (in addition to the console) using 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 33cbf2dea10..8f9e2eb22e8 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -244,7 +244,7 @@ to your application properties: [source,properties,indent=0] ---- - management.health.status.order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP + management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP ---- You might also want to register custom status mappings with the `HealthMvcEndpoint` diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 39812c246cb..ef194dc3df3 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -890,8 +890,8 @@ FATAL, OFF. Example `application.properties`: [source,properties,indent=0,subs="verbatim,quotes,attributes"] ---- - logging.level.org.springframework.web: DEBUG - logging.level.org.hibernate: ERROR + logging.level.org.springframework.web=DEBUG + logging.level.org.hibernate=ERROR ---- NOTE: By default Spring Boot remaps Thymeleaf `INFO` messages so that they are logged at