From 813104de85da3a92cf3732389f91b290265bf55d Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Tue, 20 Sep 2022 13:26:45 +0200 Subject: [PATCH] Document lb aot support (#1147) --- docs/src/main/asciidoc/spring-cloud-commons.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/src/main/asciidoc/spring-cloud-commons.adoc b/docs/src/main/asciidoc/spring-cloud-commons.adoc index b4a9ffda..b58e339d 100644 --- a/docs/src/main/asciidoc/spring-cloud-commons.adoc +++ b/docs/src/main/asciidoc/spring-cloud-commons.adoc @@ -1288,6 +1288,10 @@ The per-client configuration properties work for most of the properties, apart f NOTE: For the properties where maps where already used, where you could specify a different value per-client without using the `clients` keyword (for example, `hints`, `health-check.path`), we have kept that behaviour in order to keep the library backwards compatible. It will be modified in the next major release. +=== AOT and native image support + +Since `4.0.0`, Spring Cloud LoadBalancer supports Spring AOT transformations and native images. However, to use this feature, you need to explicitly define your LoadBalancerClient service IDs. You can do so by using the `value` or `name` attributes of the `@LoadBalancerClient` annotation or as values of the `spring.cloud.loadbalancer.eager-load.clients` property. + == Spring Cloud Circuit Breaker include::spring-cloud-circuitbreaker.adoc[leveloffset=+1]