Skip to content

Commit 6366511

Browse files
quaffmhalbritter
authored andcommitted
Fix typo
See gh-43557
1 parent 38d96aa commit 6366511

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/aot.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ It implies the following restrictions:
3030
* The classpath is fixed and fully defined at build time
3131
* The beans defined in your application cannot change at runtime, meaning:
3232
- The Spring javadoc:org.springframework.context.annotation.Profile[format=annotation] annotation and profile-specific configuration xref:how-to:aot.adoc#howto.aot.conditions[have limitations].
33-
- Properties that change if a bean is created are not supported (for example, javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnProperty[format=annotation] and `.enable` properties).
33+
- Properties that change if a bean is created are not supported (for example, javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnProperty[format=annotation] and `.enabled` properties).
3434

3535
To learn more about ahead-of-time processing, please see the xref:packaging/native-image/introducing-graalvm-native-images.adoc#packaging.native-image.introducing-graalvm-native-images.understanding-aot-processing[] section.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/introducing-graalvm-native-images.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ A closed-world assumption implies, besides xref:packaging/native-image/introduci
4949

5050
* The beans defined in your application cannot change at runtime, meaning:
5151
- The Spring javadoc:org.springframework.context.annotation.Profile[format=annotation] annotation and profile-specific configuration xref:how-to:aot.adoc#howto.aot.conditions[have limitations].
52-
- Properties that change if a bean is created are not supported (for example, javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnProperty[format=annotation] and `.enable` properties).
52+
- Properties that change if a bean is created are not supported (for example, javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnProperty[format=annotation] and `.enabled` properties).
5353

5454
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.
5555
A Spring AOT processed application will typically generate:

0 commit comments

Comments
 (0)