openapi.yml
私はヘリドンプロジェクトのサービスのopenapi 3.0記述でファイルを書きました。しかし、標準のヘリドン ハンドラーも使用します (ヘルスとメトリクス):
return Routing.builder()
.register(JsonSupport.create())
.register("/api/files", health)
.register("/api/files", metrics)
.register("/api/files/storage", fileService)
.register("/api/files", OpenAPISupport.create(config))
.build();
openapi.yml でヘルスとメトリクスのセクションを作成するにはどうすればよいですか? 私が使う:
<dependency>
<groupId>io.helidon.openapi</groupId>
<artifactId>helidon-openapi</artifactId>
<version>1.3.1</version>
</dependency>