From afa929cd6b929f645e5cf507e96c170d5830a0af Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Fri, 5 May 2023 13:38:27 +0200 Subject: [PATCH] Polish documentation --- .../src/docs/asciidoc/deployment/efficient.adoc | 2 +- .../native-image/introducing-graalvm-native-images.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/deployment/efficient.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/deployment/efficient.adoc index 29470e63b26..ab3f0be2344 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/deployment/efficient.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/deployment/efficient.adoc @@ -57,7 +57,7 @@ It implies the following restrictions: * The classpath is fixed and fully defined at build time * The beans defined in your application cannot change at runtime, meaning: -- The Spring `@Profile` annotation and profile-specific configuration is not supported +- The Spring `@Profile` annotation and profile-specific configuration <>. - Properties that change if a bean is created are not supported (for example, `@ConditionalOnProperty` and `.enable` properties). To learn more about ahead-of-time processing, please see the <>. diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/native-image/introducing-graalvm-native-images.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/native-image/introducing-graalvm-native-images.adoc index d86ea34005a..31c4673f695 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/native-image/introducing-graalvm-native-images.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/native-image/introducing-graalvm-native-images.adoc @@ -44,7 +44,7 @@ A closed-world assumption implies the following restrictions: * The classpath is fixed and fully defined at build time * The beans defined in your application cannot change at runtime, meaning: - The Spring `@Profile` annotation and profile-specific configuration <>. - - Properties that change if a bean is created are not supported (for example, `@ConditionalOnProperty` and `.enable` properties). +- Properties that change if a bean is created are not supported (for example, `@ConditionalOnProperty` and `.enable` properties). When these restrictions are in place, it becomes possible for Spring to perform ahead-of-time processing during build-time and generate additional assets that GraalVM can use. A Spring AOT processed application will typically generate: