Fix doc. Add TODO.

This commit is contained in:
Olga Maciaszek-Sharma
2024-05-15 11:52:32 +02:00
parent 4e960ca97e
commit 55ab6ab53d
2 changed files with 2 additions and 1 deletions

View File

@@ -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, however it requires the user to add some workarounds for known GraalVM issues, as described below.
Since `4.0.0`, Spring Cloud Config Server supports Spring AOT transformations. As of `4.1.0` it also supports GraalVM native images, as long as GraalVM 21 or higher is used, however it requires the user to add some workarounds for known GraalVM issues, as described below.
====

View File

@@ -187,6 +187,7 @@ public class CompositeEnvironmentBeanFactoryInitializationAotProcessor
});
}
// TODO: switch to reflectionHints.registerForInterfaces(...) after upgrading to Framework 6.2.0
// from Spring Framework BeanRegistrationsAotContribution
private void introspectPublicMethodsOnAllInterfaces(ReflectionHints hints, Class<?> type) {
Class<?> currentClass = type;