Inspired by
- https://medium.com/helidon/helidon-injection-4f3321ee7231
- https://github.com/helidon-io/helidon-examples/blob/helidon-4.x/examples/quickstarts/helidon-quickstart-inject/src/test/resources/application-test.yaml
http://localhost:8080/simple-greet
curl -w "\n" http://localhost:8080/simple-greetcurl -w "\n" http://localhost:8080/greethttp://localhost:8080/greet/Joe
curl -w "\n" http://localhost:8080/greet/Joecurl -w "\n" -X PUT -d 'Howdy' http://localhost:8080/greet/greeting./gradlew run -t./gradlew version./gradlew version | grep Version | awk '{ print $2 }'git tag 2026.03./gradlew dependencyUpdates --no-parallel./gradlew buildHealthdocker run --rm -p 8080:8080 a002k/helidon-sedocker run -d --name helidon-se --rm -p 8080:8080 a002k/helidon-se-iKeep STDIN open even if not attached--rmRemove container after stop-dDetach mode, Run container in background and print container ID
and follow -f logs
docker logs -f helidon-seto stop
docker stop helidon-sedocker compose run -d --name helidon-se --rm helidon-seUse ./.env file or overwrite as
APP_GREETING=Greet docker compose up -dand follow -f logs
docker compose logs -f helidon-seto stop
docker compose down