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