Files
TechradarDev/radar/2021-07-01/graalnaative.md
Daniel Pötzinger bcf1ead9b3 documentation: Add tags to all featured blibs (#139)
* documentation: add tags to all featured blips
2022-11-18 11:39:23 +01:00

14 lines
595 B
Markdown

---
title: "Graal Native Image"
ring: trial
quadrant: tools
tags: [coding]
---
Native Image is a technology to ahead-of-time compile Java code to a standalone executable, called a native image.
In the process of building a native image all library dependencies, including those from the JDK will be packed in the native image.
The application created as a native image can be run without a JDK.
The natively compiled applications require generally less memory and have shorter start up times.
We at AOE have already running microservices written in Scala with Graal Native Image.