mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-30 05:20:52 +00:00
* Revert "prepare 7.9.0 release (#19808)" This reverts commit 4145000dfebe7a9edea4555c8515383da7602458. * prepare 7.10.0 snapshot * update doc * update samples
Helidon Server with OpenAPI
Build and run
With JDK11+
mvn package
java -jar target/format-helidon-server-mp.jar
Exercise the application
curl -X GET http://petstore.helidon.io:8080/format
Try health and metrics
curl -s -X GET http://petstore.helidon.io:8080/format/health
{"outcome":"UP",...
. . .
# Prometheus Format
curl -s -X GET http://petstore.helidon.io:8080/format/metrics
# TYPE base:gc_g1_young_generation_count gauge
. . .
# JSON Format
curl -H 'Accept: application/json' -X GET http://petstore.helidon.io:8080/format/metrics
{"base":...
. . .