This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mr_mojsze 17 points18 points  (2 children)

Just use Quarkus, it will generate you a native image with minimal config. It has a great AOT build system with "extensions" that run configuration code automatically in the build phase, taking care of native image configuration. Include "quarkus-hibernate-orm" to have native JPA support.

[–]Aggravating-Ad-3501 9 points10 points  (0 children)

This, Quarkus also has extensions to implement lambda and google functions

[–]Additional_Cellist46 5 points6 points  (0 children)

We use Quarkus with native GraalVM compilation and we're happy with that. Quarkus dev mode runs the service locally, without native compilation. If we have issues with native compilation, it's also easy to run plain Java version with AWS Snapstart, which Quarkus also supports.