How Quarkus prepare reflective code to GraalVM
When running a native application, reflection cannot be used in the same way as in applications running on top of the JVM. All code that will be executed during runtime needs to be known at build time. So, how does Quarkus prepare reflective code to generate a native image using Graal SDK?
In this post, you'll see how Quarkus prepares reflection code configuration to be used by GraalVM.