How Spring native can run an application coded in java without JVM, from https://spring.io/blog/2021/03/11/announcing-spring-native-beta:
In practice, that means that in addition to the regular Java Virtual Machine supported by Spring since its inception, we are adding beta support for compiling Spring applications to native images with GraalVM in order to provide a new way to deploy Spring applications. Java and Kotlin are supported.
Those native Spring applications can be deployed as a standalone executable (no JVM installation required) and offer interesting characteristics including almost instant startup (typically < 100ms), instant peak performance and lower memory consumption at the cost of longer build times and fewer runtime optimizations than the JVM.
What means by "at the cost of longer build times and fewer runtime optimizations than the JVM"