Everything you need to get started with Helidon is listed here.
Prerequisites
Helidon requires Java and Maven. You might also need Docker and Kubernetes depending on how you plan to deploy your services.
Helidon requires Java 21+ (25+ recommended). |
|
Helidon requires Maven 3.8+. |
|
If you want to build and run Docker containers. |
|
If you want to deploy to Kubernetes, you need |
Verify Prerequisites
java -version
mvn --version
docker --version
kubectl version
Setting JAVA_HOME
Setting
JAVA_HOME# On Mac
export JAVA_HOME=`/usr/libexec/java_home -v 21`
# On Linux
# Use the appropriate path to your JDK
export JAVA_HOME=/usr/lib/jvm/jdk-21
Try the Quickstart Examples
Now you are ready to try the Quickstart Examples:
|
Tip
|
See About Helidon for more information on the differences between Helidon MP and SE. |
|
Tip
|
See Helidon on Windows for some tips on using Helidon on Windows. |