-
Notifications
You must be signed in to change notification settings - Fork 252
Description
@RobWin Hi,
I have a spring boot project, and we have created API document by springfox.
But we need to add further information to the API document.
*further information: response message, description of parameter
One way we can add this information to source code by annotation, but the workload of this way is heavy and so many duplicate works is there.
When I found this demo, which exchanges JSON (created in /v2/api-docs) to markdown/acsiidoc, I think whether I can add some logic to add the further information when the exchange is executing. Or whether I can add the further information into JSON (swagger specification) before the exchange.
I want to find the code for exchange logic but failed. Is exchange done by jar?
Would you tell me where the logic of exchange JSON to markdown/acsiidoc is?
Is it feasibility to add logic to where the logic of exchange is?
Best Regards,
Fly