BAEL-6088 - Ahead of Time Optimizations in Spring 6 (#13311)

* BAEL-6057 - Implementing Retry In Kafka Consumer

(moved code example to new module)

* BAEL-6057 - Implementing Retry In Kafka Consumer

(fix on README.md)

* BAEL-6088 - Ahead of Time Optimizations in Spring 6

Co-authored-by: Cesare <cesare.valenti@hotmail.com>
This commit is contained in:
cesarevalenti90 2023-01-25 17:35:49 +01:00 committed by GitHub
parent 3af60557bd
commit 3cba49e6bc
2 changed files with 20 additions and 5 deletions

View File

@ -47,6 +47,20 @@
<skipNativeTests>true</skipNativeTests>
</configuration>
</plugin>
<!-- We can compile the application in AOT mode but not producing a native image -->
<!-- If we active this plugin -->
<!-- and deactive all the pom native component -->
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<jvmArguments> -agentlib:native-image-agent=config-output-dir=target/native-image
</jvmArguments>
<systemPropertyVariables>
<springAot>true</springAot>
</systemPropertyVariables>
</configuration>
</plugin> -->
</plugins>
</pluginManagement>
</build>

View File

@ -1,3 +1,4 @@
## Relevant Articles:
- [Introduction to Spring Native](https://www.baeldung.com/spring-native-intro)
- [Ahead of Time Optimizations in Spring 6](https://www.baeldung.com/aot-optimization-spring)