diff --git a/docs/modules/ROOT/partials/_configprops.adoc b/docs/modules/ROOT/partials/_configprops.adoc index aa4ea8916..72cc4751f 100644 --- a/docs/modules/ROOT/partials/_configprops.adoc +++ b/docs/modules/ROOT/partials/_configprops.adoc @@ -36,7 +36,7 @@ |eureka.client.on-demand-update-status-change | `+++true+++` | If set to true, local status updates via ApplicationInfoManager will trigger on-demand (but rate limited) register/updates to remote eureka servers. |eureka.client.order | `+++0+++` | Order of the discovery client used by `CompositeDiscoveryClient` for sorting available clients. |eureka.client.prefer-same-zone-eureka | `+++true+++` | Indicates whether or not this instance should try to use the eureka server in the same zone for latency and/or other reason. Ideally eureka clients are configured to talk to servers in the same zone The changes are effective at runtime at the next registry fetch cycle as specified by registryFetchIntervalSeconds -|eureka.client.property-resolver | | +|eureka.client.property-resolver | | |eureka.client.proxy-host | | Gets the proxy host to eureka server if any. |eureka.client.proxy-password | | Gets the proxy password if any. |eureka.client.proxy-port | | Gets the proxy port to eureka server if any. @@ -46,24 +46,24 @@ |eureka.client.register-with-eureka | `+++true+++` | Indicates whether or not this instance should register its information with eureka server for discovery by others. In some cases, you do not want your instances to be discovered whereas you just want do discover other instances. |eureka.client.registry-fetch-interval-seconds | `+++30+++` | Indicates how often(in seconds) to fetch the registry information from the eureka server. |eureka.client.registry-refresh-single-vip-address | | Indicates whether the client is only interested in the registry information for a single VIP. -|eureka.client.rest-template-timeout.connect-request-timeout | `+++180000+++` | +|eureka.client.rest-template-timeout.connect-request-timeout | `+++180000+++` | |eureka.client.rest-template-timeout.connect-timeout | `+++180000+++` | Default values are set to 180000, in keeping with {@link RequestConfig} and {@link SocketConfig} defaults. -|eureka.client.rest-template-timeout.socket-timeout | `+++180000+++` | +|eureka.client.rest-template-timeout.socket-timeout | `+++180000+++` | |eureka.client.restclient.enabled | `+++false+++` | Enables the use of RestClient for Eureka HTTP Client. -|eureka.client.restclient.timeout.connect-request-timeout | `+++180000+++` | +|eureka.client.restclient.timeout.connect-request-timeout | `+++180000+++` | |eureka.client.restclient.timeout.connect-timeout | `+++180000+++` | Default values are set to 180000, in keeping with {@link RequestConfig} and {@link SocketConfig} defaults. -|eureka.client.restclient.timeout.socket-timeout | `+++180000+++` | +|eureka.client.restclient.timeout.socket-timeout | `+++180000+++` | |eureka.client.service-url | | Map of availability zone to list of fully qualified URLs to communicate with eureka server. Each value can be a single URL or a comma separated list of alternative locations. Typically the eureka server URLs carry protocol,host,port,context and version information if any. Example: https://ec2-256-156-243-129.compute-1.amazonaws.com:7001/eureka/ The changes are effective at runtime at the next service url refresh cycle as specified by eurekaServiceUrlPollIntervalSeconds. |eureka.client.should-enforce-registration-at-init | `+++false+++` | Indicates whether the client should enforce registration during initialization. Defaults to false. |eureka.client.should-unregister-on-shutdown | `+++true+++` | Indicates whether the client should explicitly unregister itself from the remote server on client shutdown. -|eureka.client.tls.enabled | | -|eureka.client.tls.key-password | | -|eureka.client.tls.key-store | | -|eureka.client.tls.key-store-password | | -|eureka.client.tls.key-store-type | | -|eureka.client.tls.trust-store | | -|eureka.client.tls.trust-store-password | | -|eureka.client.tls.trust-store-type | | +|eureka.client.tls.enabled | | +|eureka.client.tls.key-password | | +|eureka.client.tls.key-store | | +|eureka.client.tls.key-store-password | | +|eureka.client.tls.key-store-type | | +|eureka.client.tls.trust-store | | +|eureka.client.tls.trust-store-password | | +|eureka.client.tls.trust-store-type | | |eureka.client.use-dns-for-fetching-service-urls | `+++false+++` | Indicates whether the eureka client should use the DNS mechanism to fetch a list of eureka servers to talk to. When the DNS name is updated to have additional servers, that information is used immediately after the eureka client polls for that information as specified in eurekaServiceUrlPollIntervalSeconds. Alternatively, the service urls can be returned serviceUrls, but the users should implement their own mechanism to return the updated list in case of changes. The changes are effective at runtime. |eureka.client.webclient.enabled | `+++false+++` | Enables the use of WebClient for Eureka HTTP Client. |eureka.dashboard.enabled | `+++true+++` | Flag to enable the Eureka dashboard. Default true. @@ -75,8 +75,8 @@ |eureka.instance.appname | `+++unknown+++` | Get the name of the application to be registered with eureka. |eureka.instance.async-client-initialization | `+++false+++` | If true the EurekaClient will be initialized asynchronously when the InstanceRegistry bean is created. |eureka.instance.data-center-info | | Returns the data center this instance is deployed. This information is used to get some AWS specific instance information if the instance is deployed in AWS. -|eureka.instance.default-address-resolution-order | `+++[]+++` | -|eureka.instance.environment | | +|eureka.instance.default-address-resolution-order | `+++[]+++` | +|eureka.instance.environment | | |eureka.instance.health-check-url | | Gets the absolute health check page URL for this instance. The users can provide the healthCheckUrlPath if the health check page resides in the same instance talking to eureka, else in the cases where the instance is a proxy for some other server, users can provide the full URL. If the full URL is provided it takes precedence.
It is normally used for making educated decisions based on the health of the instance - for example, it can be used to determine whether to proceed deployments to an entire farm or stop the deployments without causing further damage. The full URL should follow the format http://${eureka.hostname}:7001/ where the value ${eureka.hostname} is replaced at runtime. |eureka.instance.health-check-url-path | | Gets the relative health check URL path for this instance. The health check page URL is then constructed out of the hostname and the type of communication - secure or unsecure as specified in securePort and nonSecurePort. It is normally used for making educated decisions based on the health of the instance - for example, it can be used to determine whether to proceed deployments to an entire farm or stop the deployments without causing further damage. |eureka.instance.home-page-url | | Gets the absolute home page URL for this instance. The users can provide the homePageUrlPath if the home page resides in the same instance talking to eureka, else in the cases where the instance is a proxy for some other server, users can provide the full URL. If the full URL is provided it takes precedence. It is normally used for informational purposes for other services to use it as a landing page. The full URL should follow the format http://${eureka.hostname}:7001/ where the value ${eureka.hostname} is replaced at runtime. @@ -95,7 +95,7 @@ |eureka.instance.non-secure-port-enabled | `+++true+++` | Indicates whether the non-secure port should be enabled for traffic or not. |eureka.instance.prefer-ip-address | `+++false+++` | Flag to say that, when guessing a hostname, the IP address of the server should be used in preference to the hostname reported by the OS. |eureka.instance.registry.default-open-for-traffic-count | `+++1+++` | Value used in determining when leases are cancelled, default to 1 for standalone. Should be set to 0 for peer replicated eurekas -|eureka.instance.registry.expected-number-of-clients-sending-renews | `+++1+++` | +|eureka.instance.registry.expected-number-of-clients-sending-renews | `+++1+++` | |eureka.instance.secure-health-check-url | | Gets the absolute secure health check page URL for this instance. The users can provide the secureHealthCheckUrl if the health check page resides in the same instance talking to eureka, else in the cases where the instance is a proxy for some other server, users can provide the full URL. If the full URL is provided it takes precedence.
It is normally used for making educated decisions based on the health of the instance - for example, it can be used to determine whether to proceed deployments to an entire farm or stop the deployments without causing further damage. The full URL should follow the format http://${eureka.hostname}:7001/ where the value ${eureka.hostname} is replaced at runtime.
|eureka.instance.secure-port | `+++443+++` | Get the Secure port on which the instance should receive traffic.
|eureka.instance.secure-port-enabled | `+++false+++` | Indicates whether the secure port should be enabled for traffic or not.
@@ -103,83 +103,83 @@
|eureka.instance.status-page-url | | Gets the absolute status page URL path for this instance. The users can provide the statusPageUrlPath if the status page resides in the same instance talking to eureka, else in the cases where the instance is a proxy for some other server, users can provide the full URL. If the full URL is provided it takes precedence. It is normally used for informational purposes for other services to find about the status of this instance. Users can provide a simple HTML indicating what is the current status of the instance.
|eureka.instance.status-page-url-path | | Gets the relative status page URL path for this instance. The status page URL is then constructed out of the hostName and the type of communication - secure or unsecure as specified in securePort and nonSecurePort. It is normally used for informational purposes for other services to find about the status of this instance. Users can provide a simple HTML indicating what is the current status of the instance.
|eureka.instance.virtual-host-name | `+++unknown+++` | Gets the virtual host name defined for this instance. This is typically the way other instance would find this instance by using the virtual host name.Think of this as similar to the fully qualified domain name, that the users of your services will need to find this instance.
-|eureka.server.a-s-g-cache-expiry-timeout-ms | `+++600000+++` |
-|eureka.server.a-s-g-query-timeout-ms | `+++300+++` |
-|eureka.server.a-s-g-update-interval-ms | `+++300000+++` |
-|eureka.server.a-w-s-access-id | |
-|eureka.server.a-w-s-secret-key | |
-|eureka.server.batch-replication | `+++false+++` |
-|eureka.server.binding-strategy | `+++eip+++` |
-|eureka.server.delta-retention-timer-interval-in-ms | `+++30000+++` |
-|eureka.server.disable-delta | `+++false+++` |
-|eureka.server.disable-delta-for-remote-regions | `+++false+++` |
-|eureka.server.disable-transparent-fallback-to-other-region | `+++false+++` |
-|eureka.server.e-i-p-bind-rebind-retries | `+++3+++` |
-|eureka.server.e-i-p-binding-retry-interval-ms | `+++300000+++` |
-|eureka.server.e-i-p-binding-retry-interval-ms-when-unbound | `+++60000+++` |
-|eureka.server.enable-replicated-request-compression | `+++false+++` |
-|eureka.server.enable-self-preservation | `+++true+++` |
-|eureka.server.eviction-interval-timer-in-ms | `+++0+++` |
-|eureka.server.expected-client-renewal-interval-seconds | `+++30+++` |
-|eureka.server.g-zip-content-from-remote-region | `+++true+++` |
-|eureka.server.initial-capacity-of-response-cache | `+++1000+++` |
-|eureka.server.json-codec-name | |
-|eureka.server.list-auto-scaling-groups-role-name | `+++ListAutoScalingGroups+++` |
-|eureka.server.log-identity-headers | `+++true+++` |
-|eureka.server.max-elements-in-peer-replication-pool | `+++10000+++` |
-|eureka.server.max-elements-in-status-replication-pool | `+++10000+++` |
-|eureka.server.max-idle-thread-age-in-minutes-for-peer-replication | `+++15+++` |
-|eureka.server.max-idle-thread-in-minutes-age-for-status-replication | `+++10+++` |
-|eureka.server.max-threads-for-peer-replication | `+++20+++` |
-|eureka.server.max-threads-for-status-replication | `+++1+++` |
-|eureka.server.max-time-for-replication | `+++30000+++` |
+|eureka.server.a-s-g-cache-expiry-timeout-ms | `+++600000+++` |
+|eureka.server.a-s-g-query-timeout-ms | `+++300+++` |
+|eureka.server.a-s-g-update-interval-ms | `+++300000+++` |
+|eureka.server.a-w-s-access-id | |
+|eureka.server.a-w-s-secret-key | |
+|eureka.server.batch-replication | `+++false+++` |
+|eureka.server.binding-strategy | `+++eip+++` |
+|eureka.server.delta-retention-timer-interval-in-ms | `+++30000+++` |
+|eureka.server.disable-delta | `+++false+++` |
+|eureka.server.disable-delta-for-remote-regions | `+++false+++` |
+|eureka.server.disable-transparent-fallback-to-other-region | `+++false+++` |
+|eureka.server.e-i-p-bind-rebind-retries | `+++3+++` |
+|eureka.server.e-i-p-binding-retry-interval-ms | `+++300000+++` |
+|eureka.server.e-i-p-binding-retry-interval-ms-when-unbound | `+++60000+++` |
+|eureka.server.enable-replicated-request-compression | `+++false+++` |
+|eureka.server.enable-self-preservation | `+++true+++` |
+|eureka.server.eviction-interval-timer-in-ms | `+++0+++` |
+|eureka.server.expected-client-renewal-interval-seconds | `+++30+++` |
+|eureka.server.g-zip-content-from-remote-region | `+++true+++` |
+|eureka.server.initial-capacity-of-response-cache | `+++1000+++` |
+|eureka.server.json-codec-name | |
+|eureka.server.list-auto-scaling-groups-role-name | `+++ListAutoScalingGroups+++` |
+|eureka.server.log-identity-headers | `+++true+++` |
+|eureka.server.max-elements-in-peer-replication-pool | `+++10000+++` |
+|eureka.server.max-elements-in-status-replication-pool | `+++10000+++` |
+|eureka.server.max-idle-thread-age-in-minutes-for-peer-replication | `+++15+++` |
+|eureka.server.max-idle-thread-in-minutes-age-for-status-replication | `+++10+++` |
+|eureka.server.max-threads-for-peer-replication | `+++20+++` |
+|eureka.server.max-threads-for-status-replication | `+++1+++` |
+|eureka.server.max-time-for-replication | `+++30000+++` |
|eureka.server.metrics.enabled | `+++false+++` | Indicates whether the metrics should be enabled for eureka instances.
-|eureka.server.min-available-instances-for-peer-replication | `+++-1+++` |
-|eureka.server.min-threads-for-peer-replication | `+++5+++` |
-|eureka.server.min-threads-for-status-replication | `+++1+++` |
-|eureka.server.my-url | |
-|eureka.server.number-of-replication-retries | `+++5+++` |
-|eureka.server.peer-eureka-nodes-update-interval-ms | `+++600000+++` |
-|eureka.server.peer-eureka-status-refresh-time-interval-ms | `+++0+++` |
-|eureka.server.peer-node-connect-timeout-ms | `+++200+++` |
-|eureka.server.peer-node-connection-idle-timeout-seconds | `+++30+++` |
-|eureka.server.peer-node-read-timeout-ms | `+++200+++` |
-|eureka.server.peer-node-total-connections | `+++1000+++` |
-|eureka.server.peer-node-total-connections-per-host | `+++500+++` |
-|eureka.server.prime-aws-replica-connections | `+++true+++` |
-|eureka.server.property-resolver | |
-|eureka.server.rate-limiter-burst-size | `+++10+++` |
-|eureka.server.rate-limiter-enabled | `+++false+++` |
-|eureka.server.rate-limiter-full-fetch-average-rate | `+++100+++` |
-|eureka.server.rate-limiter-privileged-clients | |
-|eureka.server.rate-limiter-registry-fetch-average-rate | `+++500+++` |
-|eureka.server.rate-limiter-throttle-standard-clients | `+++false+++` |
-|eureka.server.registry-sync-retries | `+++0+++` |
-|eureka.server.registry-sync-retry-wait-ms | `+++0+++` |
-|eureka.server.remote-region-app-whitelist | |
-|eureka.server.remote-region-connect-timeout-ms | `+++1000+++` |
-|eureka.server.remote-region-connection-idle-timeout-seconds | `+++30+++` |
-|eureka.server.remote-region-fetch-thread-pool-size | `+++20+++` |
-|eureka.server.remote-region-read-timeout-ms | `+++1000+++` |
-|eureka.server.remote-region-registry-fetch-interval | `+++30+++` |
-|eureka.server.remote-region-total-connections | `+++1000+++` |
-|eureka.server.remote-region-total-connections-per-host | `+++500+++` |
-|eureka.server.remote-region-trust-store | |
-|eureka.server.remote-region-trust-store-password | `+++changeit+++` |
-|eureka.server.remote-region-urls | |
-|eureka.server.remote-region-urls-with-name | |
-|eureka.server.renewal-percent-threshold | `+++0.85+++` |
-|eureka.server.renewal-threshold-update-interval-ms | `+++900000+++` |
-|eureka.server.response-cache-auto-expiration-in-seconds | `+++180+++` |
-|eureka.server.response-cache-update-interval-ms | `+++30000+++` |
-|eureka.server.retention-time-in-m-s-in-delta-queue | `+++180000+++` |
-|eureka.server.route53-bind-rebind-retries | `+++3+++` |
-|eureka.server.route53-binding-retry-interval-ms | `+++300000+++` |
-|eureka.server.route53-domain-t-t-l | `+++30+++` |
-|eureka.server.sync-when-timestamp-differs | `+++true+++` |
-|eureka.server.use-read-only-response-cache | `+++true+++` |
-|eureka.server.wait-time-in-ms-when-sync-empty | `+++300000+++` |
-|eureka.server.xml-codec-name | |
+|eureka.server.min-available-instances-for-peer-replication | `+++-1+++` |
+|eureka.server.min-threads-for-peer-replication | `+++5+++` |
+|eureka.server.min-threads-for-status-replication | `+++1+++` |
+|eureka.server.my-url | |
+|eureka.server.number-of-replication-retries | `+++5+++` |
+|eureka.server.peer-eureka-nodes-update-interval-ms | `+++600000+++` |
+|eureka.server.peer-eureka-status-refresh-time-interval-ms | `+++0+++` |
+|eureka.server.peer-node-connect-timeout-ms | `+++200+++` |
+|eureka.server.peer-node-connection-idle-timeout-seconds | `+++30+++` |
+|eureka.server.peer-node-read-timeout-ms | `+++200+++` |
+|eureka.server.peer-node-total-connections | `+++1000+++` |
+|eureka.server.peer-node-total-connections-per-host | `+++500+++` |
+|eureka.server.prime-aws-replica-connections | `+++true+++` |
+|eureka.server.property-resolver | |
+|eureka.server.rate-limiter-burst-size | `+++10+++` |
+|eureka.server.rate-limiter-enabled | `+++false+++` |
+|eureka.server.rate-limiter-full-fetch-average-rate | `+++100+++` |
+|eureka.server.rate-limiter-privileged-clients | |
+|eureka.server.rate-limiter-registry-fetch-average-rate | `+++500+++` |
+|eureka.server.rate-limiter-throttle-standard-clients | `+++false+++` |
+|eureka.server.registry-sync-retries | `+++0+++` |
+|eureka.server.registry-sync-retry-wait-ms | `+++0+++` |
+|eureka.server.remote-region-app-whitelist | |
+|eureka.server.remote-region-connect-timeout-ms | `+++1000+++` |
+|eureka.server.remote-region-connection-idle-timeout-seconds | `+++30+++` |
+|eureka.server.remote-region-fetch-thread-pool-size | `+++20+++` |
+|eureka.server.remote-region-read-timeout-ms | `+++1000+++` |
+|eureka.server.remote-region-registry-fetch-interval | `+++30+++` |
+|eureka.server.remote-region-total-connections | `+++1000+++` |
+|eureka.server.remote-region-total-connections-per-host | `+++500+++` |
+|eureka.server.remote-region-trust-store | |
+|eureka.server.remote-region-trust-store-password | `+++changeit+++` |
+|eureka.server.remote-region-urls | |
+|eureka.server.remote-region-urls-with-name | |
+|eureka.server.renewal-percent-threshold | `+++0.85+++` |
+|eureka.server.renewal-threshold-update-interval-ms | `+++900000+++` |
+|eureka.server.response-cache-auto-expiration-in-seconds | `+++180+++` |
+|eureka.server.response-cache-update-interval-ms | `+++30000+++` |
+|eureka.server.retention-time-in-m-s-in-delta-queue | `+++180000+++` |
+|eureka.server.route53-bind-rebind-retries | `+++3+++` |
+|eureka.server.route53-binding-retry-interval-ms | `+++300000+++` |
+|eureka.server.route53-domain-t-t-l | `+++30+++` |
+|eureka.server.sync-when-timestamp-differs | `+++true+++` |
+|eureka.server.use-read-only-response-cache | `+++true+++` |
+|eureka.server.wait-time-in-ms-when-sync-empty | `+++300000+++` |
+|eureka.server.xml-codec-name | |
|spring.cloud.compatibility-verifier.compatible-boot-versions | `+++3.4.x+++` | Default accepted versions for the Spring Boot dependency. You can set {@code x} for the patch version if you don't want to specify a concrete value. Example: {@code 3.4.x}
|spring.cloud.compatibility-verifier.enabled | `+++false+++` | Enables creation of Spring Cloud compatibility verification.
|spring.cloud.config.allow-override | `+++true+++` | Flag to indicate that {@link #isOverrideSystemProperties() systemPropertiesOverride} can be used. Set to false to prevent users from changing the default accidentally. Default true.
@@ -188,24 +188,24 @@
|spring.cloud.config.override-system-properties | `+++true+++` | Flag to indicate that the external properties should override system properties. Default true.
|spring.cloud.decrypt-environment-post-processor.enabled | `+++true+++` | Enable the DecryptEnvironmentPostProcessor.
|spring.cloud.discovery.client.composite-indicator.enabled | `+++true+++` | Enables discovery client composite health indicator.
-|spring.cloud.discovery.client.health-indicator.enabled | `+++true+++` |
-|spring.cloud.discovery.client.health-indicator.include-description | `+++false+++` |
+|spring.cloud.discovery.client.health-indicator.enabled | `+++true+++` |
+|spring.cloud.discovery.client.health-indicator.include-description | `+++false+++` |
|spring.cloud.discovery.client.health-indicator.use-services-query | `+++true+++` | Whether or not the indicator should use {@link DiscoveryClient#getServices} to check its health. When set to {@code false} the indicator instead uses the lighter {@link DiscoveryClient#probe()}. This can be helpful in large deployments where the number of services returned makes the operation unnecessarily heavy.
-|spring.cloud.discovery.client.simple.instances | |
-|spring.cloud.discovery.client.simple.local.host | |
-|spring.cloud.discovery.client.simple.local.instance-id | |
-|spring.cloud.discovery.client.simple.local.metadata | |
-|spring.cloud.discovery.client.simple.local.port | `+++0+++` |
-|spring.cloud.discovery.client.simple.local.secure | `+++false+++` |
-|spring.cloud.discovery.client.simple.local.service-id | |
-|spring.cloud.discovery.client.simple.local.uri | |
-|spring.cloud.discovery.client.simple.order | |
+|spring.cloud.discovery.client.simple.instances | |
+|spring.cloud.discovery.client.simple.local.host | |
+|spring.cloud.discovery.client.simple.local.instance-id | |
+|spring.cloud.discovery.client.simple.local.metadata | |
+|spring.cloud.discovery.client.simple.local.port | `+++0+++` |
+|spring.cloud.discovery.client.simple.local.secure | `+++false+++` |
+|spring.cloud.discovery.client.simple.local.service-id | |
+|spring.cloud.discovery.client.simple.local.uri | |
+|spring.cloud.discovery.client.simple.order | |
|spring.cloud.discovery.enabled | `+++true+++` | Enables discovery client health indicators.
|spring.cloud.features.enabled | `+++true+++` | Enables the features endpoint.
|spring.cloud.httpclientfactories.apache.enabled | `+++true+++` | Enables creation of Apache Http Client factory beans.
|spring.cloud.httpclientfactories.ok.enabled | `+++true+++` | Enables creation of OK Http Client factory beans.
-|spring.cloud.hypermedia.refresh.fixed-delay | `+++5000+++` |
-|spring.cloud.hypermedia.refresh.initial-delay | `+++10000+++` |
+|spring.cloud.hypermedia.refresh.fixed-delay | `+++5000+++` |
+|spring.cloud.hypermedia.refresh.initial-delay | `+++10000+++` |
|spring.cloud.inetutils.default-hostname | `+++localhost+++` | The default hostname. Used in case of errors.
|spring.cloud.inetutils.default-ip-address | `+++127.0.0.1+++` | The default IP address. Used in case of errors.
|spring.cloud.inetutils.ignored-interfaces | | List of Java regular expressions for network interfaces that will be ignored.
@@ -217,7 +217,7 @@
|spring.cloud.loadbalancer.cache.enabled | `+++true+++` | Enables Spring Cloud LoadBalancer caching mechanism.
|spring.cloud.loadbalancer.cache.ttl | `+++35s+++` | Time To Live - time counted from writing of the record, after which cache entries are expired, expressed as a {@link Duration}. The property {@link String} has to be in keeping with the appropriate syntax as specified in Spring Boot StringToDurationConverter
. @see StringToDurationConverter.java
|spring.cloud.loadbalancer.call-get-with-request-on-delegates | `+++true+++` | If this flag is set to {@code true}, {@code ServiceInstanceListSupplier#get(Request request)} method will be implemented to call {@code delegate.get(request)} in classes assignable from {@code DelegatingServiceInstanceListSupplier} that don't already implement that method, with the exclusion of {@code CachingServiceInstanceListSupplier} and {@code HealthCheckServiceInstanceListSupplier}, which should be placed in the instance supplier hierarchy directly after the supplier performing instance retrieval over the network, before any request-based filtering is done, {@code true} by default.
-|spring.cloud.loadbalancer.clients | |
+|spring.cloud.loadbalancer.clients | |
|spring.cloud.loadbalancer.configurations | `+++default+++` | Enables a predefined LoadBalancer configuration.
|spring.cloud.loadbalancer.eager-load.clients | | Names of the clients.
|spring.cloud.loadbalancer.enabled | `+++true+++` | Enables Spring Cloud LoadBalancer.
diff --git a/docs/pom.xml b/docs/pom.xml
index 4bd35ea60..4ef37f87c 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -8,7 +8,7 @@