From 248bad34dcbc81bfb3e607a82d452e5345e8288c Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 2 May 2016 14:15:55 +0200 Subject: [PATCH 1/2] Fix `RedisProperties` link in the doc Closes gh-5811 --- .../src/main/asciidoc/appendix-application-properties.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 51d01ab4e90..12b4730b915 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -678,7 +678,7 @@ content into your application; rather pick only the properties that you need. spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable. spring.mongodb.embedded.version=2.6.10 # Version of Mongo to use. - # REDIS ({sc-spring-boot-autoconfigure}/redis/RedisProperties.{sc-ext}[RedisProperties]) + # REDIS ({sc-spring-boot-autoconfigure}/data/redis/RedisProperties.{sc-ext}[RedisProperties]) spring.redis.database=0 # Database index used by the connection factory. spring.redis.host=localhost # Redis server host. spring.redis.password= # Login password of the redis server. From 42af5ebc2cd5f4383094aeab3e5e45d3a0f96ff4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 2 May 2016 14:17:48 +0200 Subject: [PATCH 2/2] Fix class name Closes gh-5823 --- spring-boot-docs/src/main/asciidoc/deployment.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/deployment.adoc b/spring-boot-docs/src/main/asciidoc/deployment.adoc index 8417dada03c..bd86b342c6e 100644 --- a/spring-boot-docs/src/main/asciidoc/deployment.adoc +++ b/spring-boot-docs/src/main/asciidoc/deployment.adoc @@ -142,8 +142,8 @@ Spring's `Environment` abstraction: All Cloud Foundry properties are prefixed with `vcap`. You can use vcap properties to access application information (such as the public URL of the application) and service -information (such as database credentials). See `VcapApplicationListener` Javadoc for -complete details. +information (such as database credentials). See `CloudFoundryVcapEnvironmentPostProcessor` +Javadoc for complete details. TIP: The http://cloud.spring.io/spring-cloud-connectors/[Spring Cloud Connectors] project is a better fit for tasks such as configuring a DataSource. Spring Boot includes