From ce804c6679367cc726ff46584db27194d721f967 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Thu, 1 Jun 2017 13:23:28 +0000 Subject: [PATCH] Sync docs from master to gh-pages --- spring-cloud-config.html | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/spring-cloud-config.html b/spring-cloud-config.html index 99bdc07e..df6c7613 100644 --- a/spring-cloud-config.html +++ b/spring-cloud-config.html @@ -2443,10 +2443,6 @@ steps below.

  1. -

    Set spring.cloud.config.enabled=false to disable the existing config server -property source.

    -
  2. -
  3. Create a new configuration bean with an implementation of PropertySourceLocator.

@@ -2456,13 +2452,6 @@ property source.

@Configuration
 public class CustomConfigServiceBootstrapConfiguration {
-    @Bean
-    public ConfigClientProperties configClientProperties() {
-        ConfigClientProperties client = new ConfigClientProperties(this.environment);
-        client.setEnabled(false);
-        return client;
-    }
-
     @Bean
     public ConfigServicePropertySourceLocator configServicePropertySourceLocator() {
         ConfigClientProperties clientProperties = configClientProperties();
@@ -2482,7 +2471,7 @@ public class CustomConfigServiceBootstrapConfiguration {
 
 
-
spring.factorties
+
spring.factories
org.springframework.cloud.bootstrap.BootstrapConfiguration = com.my.config.client.CustomConfigServiceBootstrapConfiguration