Package org.springframework.aot
Class AotDetector
java.lang.Object
org.springframework.aot.AotDetector
Utility for determining if AOT-processed optimizations must be used rather
than the regular runtime. Strictly for internal use within the framework.
- Since:
- 6.0
- Author:
- Stephane Nicoll, Sebastien Deleuze
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
System property that indicates the application should run with AOT generated artifacts. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
Determine whether AOT optimizations must be considered at runtime.
-
Field Details
-
AOT_ENABLED
System property that indicates the application should run with AOT generated artifacts. If such optimizations are not available, it is recommended to throw an exception rather than fall back to the regular runtime behavior.- See Also:
-
-
Constructor Details
-
AotDetector
public AotDetector()
-
-
Method Details
-
useGeneratedArtifacts
public static boolean useGeneratedArtifacts()Determine whether AOT optimizations must be considered at runtime. This is mandatory in a native image but can be triggered on the JVM using the "spring.aot.enabled" Spring property.- Returns:
- whether AOT optimizations must be considered
-