From 0f14210937f93c28fa3e0586d3f57341909bdf0d Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 14 Apr 2015 09:51:14 +0200 Subject: [PATCH] Polish documentation --- .../ElasticsearchProperties.java | 2 +- .../appendix-application-properties.adoc | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/elasticsearch/ElasticsearchProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/elasticsearch/ElasticsearchProperties.java index 535fd1890f5..633d122f663 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/elasticsearch/ElasticsearchProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/elasticsearch/ElasticsearchProperties.java @@ -43,7 +43,7 @@ public class ElasticsearchProperties { private String clusterNodes; /** - * Additional properties used to configure the client + * Additional properties used to configure the client. */ private Map properties = new HashMap(); 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 2c3c94fd29b..3f841bed858 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -75,7 +75,7 @@ content into your application; rather pick only the properties that you need. server.tomcat.access-log-pattern= # log pattern of the access log server.tomcat.access-log-enabled=false # is access logging enabled server.tomcat.compression=off # is compression enabled (off, on, or an integer content length limit) - server.tomcat.compressableMimeTypes=text/html,text/xml,text/plain # comma-separated list of mime types that Tomcat will compress + server.tomcat.compressable-mime-types=text/html,text/xml,text/plain # comma-separated list of mime types that Tomcat will compress server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\ 192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\ 169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\ @@ -121,17 +121,17 @@ content into your application; rather pick only the properties that you need. spring.http.converters.preferred-json-mapper= # the preferred JSON mapper to use for HTTP message conversion. Set to "gson" to force the use of Gson when both it and Jackson are on the classpath. # HTTP response compression ({sc-spring-boot-autoconfigure}/web/GzipFilterProperties.{sc-ext}[GzipFilterProperties]) - spring.http.gzip.bufferSize= # size of the output buffer in bytes - spring.http.gzip.deflateCompressionLevel= # the level used for deflate compression (0-9) - spring.http.gzip.deflateNoWrap= # noWrap setting for deflate compression (true or false) + spring.http.gzip.buffer-size= # size of the output buffer in bytes + spring.http.gzip.deflate-compression-level= # the level used for deflate compression (0-9) + spring.http.gzip.deflate-no-wrap= # noWrap setting for deflate compression (true or false) spring.http.gzip.enabled=true # enable gzip filter support - spring.http.gzip.excludedAgents= # comma-separated list of user agents to exclude from compression - spring.http.gzip.excludedAgentPatterns= # comma-separated list of regular expression patterns to control user agents excluded from compression - spring.http.gzip.excludedPaths= # comma-separated list of paths to exclude from compression - spring.http.gzip.excludedPathPatterns= # comma-separated list of regular expression patterns to control the paths that are excluded from compression + spring.http.gzip.excluded-agents= # comma-separated list of user agents to exclude from compression + spring.http.gzip.excluded-agent-patterns= # comma-separated list of regular expression patterns to control user agents excluded from compression + spring.http.gzip.excluded-paths= # comma-separated list of paths to exclude from compression + spring.http.gzip.excluded-path-patterns= # comma-separated list of regular expression patterns to control the paths that are excluded from compression spring.http.gzip.methods= # comma-separated list of HTTP methods for which compression is enabled - spring.http.gzip.mimeTypes= # comma-separated list of MIME types which should be compressed - spring.http.gzip.minGzipSize= # minimum content length required for compression to occur + spring.http.gzip.mime-types= # comma-separated list of MIME types which should be compressed + spring.http.gzip.min-gzip-size= # minimum content length required for compression to occur spring.http.gzip.vary= # Vary header to be sent on responses that may be compressed # JACKSON ({sc-spring-boot-autoconfigure}/jackson/JacksonProperties.{sc-ext}[JacksonProperties])