diff --git a/reference/html/README.html b/reference/html/README.html index 64e41448..b7261f77 100644 --- a/reference/html/README.html +++ b/reference/html/README.html @@ -277,6 +277,14 @@ a modified file in the correct place. Just commit it and push the change.
should also work without issue as long as they use Maven 3.3.3 or better.Spring Cloud projects require the 'spring' Maven profile to be activated to resolve +the spring milestone and snapshot repositories. Use your preferred IDE to set this +profile to be active, or you may experience build errors.
+We recommend the m2eclipse eclipse plugin when working with
diff --git a/reference/html/index.html b/reference/html/index.html
index 1085e2d1..91913112 100644
--- a/reference/html/index.html
+++ b/reference/html/index.html
@@ -1600,7 +1600,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
@Bean
public ServiceInstanceListSupplier discoveryClientServiceInstanceListSupplier(
ConfigurableApplicationContext context) {
- return ServiceInstanceListSuppliers.builder()
+ return ServiceInstanceListSupplier.builder()
.withDiscoveryClient()
.withHealthChecks()
.withCaching()
@@ -1613,7 +1613,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
In order to make working on your own LoadBalancer configuration easier, we have added some utility methods in ServiceInstanceListSuppliers class.
In order to make working on your own LoadBalancer configuration easier, we have added a builder() method to the ServiceInstanceListSupplier class.
DiscoveryClientServiceInstanceListSupplier del
@Bean
public ServiceInstanceListSupplier discoveryClientServiceInstanceListSupplier(
ConfigurableApplicationContext context) {
- return ServiceInstanceListSuppliers.builder()
+ return ServiceInstanceListSupplier.builder()
.withDiscoveryClient()
.withHealthChecks()
.withCaching()
@@ -1613,7 +1613,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
In order to make working on your own LoadBalancer configuration easier, we have added some utility methods in ServiceInstanceListSuppliers class.
In order to make working on your own LoadBalancer configuration easier, we have added a builder() method to the ServiceInstanceListSupplier class.