Stéphane Nicoll
Stéphane Nicoll
The maven plugin is currently named `spring-boot:aot-generate` and The Gradle task is `generateAotSources`. While brainstorming on the names to use for the related test support, we thought renaming those was...
Reviewing #31903, the [documentation](https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints.info.git-commit-information) states that three properties are exposed by default but the actuator doc [mentions a 4th one](https://docs.spring.io/spring-boot/docs/current/actuator-api/htmlsingle/#info.retrieving.response-structure.git). Aligning would be good. Mentioning that the output structure is...
The change in https://github.com/spring-projects/spring-boot/pull/31828 is breaking a native image deployment as follows: ``` Exception in thread "main" java.lang.UnsupportedOperationException at java.lang.StackWalker$StackFrame.getMethodType(StackWalker.java:148) at org.springframework.boot.SpringApplication.lambda$findMainClass$1(SpringApplication.java:290) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:178) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) at com.oracle.svm.core.jdk.Target_java_lang_StackWalker$AbstractStackFrameSpliterator.tryAdvance(Target_java_lang_StackWalker.java:220) at java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)...
Our test support has a `TestCompiler` (`org.springframework.boot.testsupport.compiler.TestCompiler`). Now that Spring Framework has a test module that ships with a more powerful variant, we should remove ours and adapt our existing...
As a follow-up of #1592, the current code failed because the factory implementation is a static inner class of the related class that it handles and the code generation needs...
It looks like that the upgrade to the latest Spring Boot has brought a change in the testing support that triggers a cycle with AOT. ``` *************************** APPLICATION FAILED TO...