From 159c94a3b860d38ba5aac3c08283f3aad3edc503 Mon Sep 17 00:00:00 2001 From: Olga MaciaszekSharma Date: Tue, 5 Dec 2023 14:32:25 +0100 Subject: [PATCH] Update docs. --- .../ROOT/pages/server/aot-and-native-image-support.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/server/aot-and-native-image-support.adoc b/docs/modules/ROOT/pages/server/aot-and-native-image-support.adoc index e9571c9f06..7ad4fdb52f 100644 --- a/docs/modules/ROOT/pages/server/aot-and-native-image-support.adoc +++ b/docs/modules/ROOT/pages/server/aot-and-native-image-support.adoc @@ -2,7 +2,7 @@ = AOT and Native Image Support :page-section-summary-toc: 1 -Since `4.0.0`, Spring Cloud Config Server supports Spring AOT transformations. As of `4.1.0` it also supports GraalVM native images. +Since `4.0.0`, Spring Cloud Config Server supports Spring AOT transformations. As of `4.1.0` it also supports GraalVM native images, however it requires the user to add some workarounds for known GraalVM issues, as described below. ==== @@ -19,6 +19,7 @@ Since handling `FileSystemProvider` has not yet been properly addressed in Graal --initialize-at-run-time=org.bouncycastle.jcajce.provider.drbg.DRBG$NonceAndIV ---- +NOTE:: Adding the additional build time initializations can affect performance, but it still may offer gains as compared to a regular JVM run. Make sure to measure and compare for your application. ====