You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to generate openAPI spec for a java Spring application using atom and atom-tools,
the endpoints in generated spec are missing the @RequestMapping prefix path
eg.
Here the generated openAPI spec has endpoint /balance/{accountNo}
whereas the actual endpoint should be /user/balance/{accountNo}
The text was updated successfully, but these errors were encountered:
sohitgore
changed the title
OpenAPI spec generation in Java Spring does not prefix RequestMapping
OpenAPI spec generation in Java Spring does not prefix endpoints with the RequestMapping
May 10, 2024
Nice bug. We have a similar issue in Python with blueprint apps. I am a bit busy till end of June, but will try to think of a way to propagate class annotations to the method level.
Nice bug. We have a similar issue in Python with blueprint apps. I am a bit busy till end of June, but will try to think of a way to propagate class annotations to the method level.
Hey @prabhu thanks for acknowledging, is there a plan to address this bug?
Describe the issue
When trying to generate openAPI spec for a java Spring application using atom and atom-tools,
the endpoints in generated spec are missing the
@RequestMapping
prefix patheg.
Here the generated openAPI spec has endpoint
/balance/{accountNo}
whereas the actual endpoint should be
/user/balance/{accountNo}
The text was updated successfully, but these errors were encountered: