-
-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
The old plugin allows us to define OpenAPI documentation on runtime.
Example:
OpenApiDocumentation getPriceByProductId =
OpenApiBuilder.document()
.queryParam("productId", String.class)
.json("200", Price.class);
ApiBuilder.get(
"/products/{productId}/price",
OpenApiBuilder.documented(
getPriceByProductId, priceByProductIdHandler());
It would be nice to also have this option on Javalin 5.
rainbowdashlabs
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
📋 Backlog