From 61eda3e6b0be0792837b84b156a36aceeecd6687 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 9 Jun 2017 08:53:49 +0300 Subject: [PATCH] Polish See gh-9438 --- .../src/main/asciidoc/appendix-application-properties.adoc | 4 ++-- spring-boot-docs/src/main/asciidoc/deployment.adoc | 2 +- 2 files changed, 3 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 67a8824b6e7..a879508108c 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -596,7 +596,7 @@ content into your application; rather pick only the properties that you need. # DATA REDIS spring.data.redis.repositories.enabled=true # Enable Redis repositories. - # NEO4J ({sc-spring-boot-autoconfigure}/neo4j/Neo4jProperties.{sc-ext}[Neo4jProperties]) + # NEO4J ({sc-spring-boot-autoconfigure}/data/neo4j/Neo4jProperties.{sc-ext}[Neo4jProperties]) spring.data.neo4j.compiler= # Compiler to use. spring.data.neo4j.embedded.enabled=true # Enable embedded mode if the embedded driver is available. spring.data.neo4j.open-in-view=false # Register OpenSessionInViewInterceptor. Binds a Neo4j Session to the thread for the entire processing of the request. @@ -649,7 +649,7 @@ content into your application; rather pick only the properties that you need. spring.datasource.xa.data-source-class-name= # XA datasource fully qualified name. spring.datasource.xa.properties= # Properties to pass to the XA data source. - # JEST (Elasticsearch HTTP client) ({sc-spring-boot-autoconfigure}/jest/JestProperties.{sc-ext}[JestProperties]) + # JEST (Elasticsearch HTTP client) ({sc-spring-boot-autoconfigure}/elasticsearch/jest/JestProperties.{sc-ext}[JestProperties]) spring.elasticsearch.jest.connection-timeout=3000 # Connection timeout in milliseconds. spring.elasticsearch.jest.multi-threaded=true # Enable connection requests from multiple execution threads. spring.elasticsearch.jest.password= # Login password. diff --git a/spring-boot-docs/src/main/asciidoc/deployment.adoc b/spring-boot-docs/src/main/asciidoc/deployment.adoc index 3b661a1e905..f002e6d1cce 100644 --- a/spring-boot-docs/src/main/asciidoc/deployment.adoc +++ b/spring-boot-docs/src/main/asciidoc/deployment.adoc @@ -458,7 +458,7 @@ WARNING: Fully executable jars work by embedding an extra script at the front of file. Currently, some tools do not accept this format so you may not always be able to use this technique. For example, `jar -xf` may silently fail to extract a jar or war that has been made fully-executable. It is recommended that you only make your jar or war -fully executable if you intened to execute it directly, rather than running it with +fully executable if you intend to execute it directly, rather than running it with `java -jar` or deploying it to a servlet container. To create a '`fully executable`' jar with Maven use the following plugin configuration: