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
If you've got @RequestMapping(value = "/my/api/v1/and/{id}/something") on your class and @RequestMapping(method = POST) on your method, no documentation will be generated. You have to specify a value="", e.g. @RequestMapping(value = "", method = POST) for it to be picked up.
The text was updated successfully, but these errors were encountered:
If you've got @RequestMapping(value = "/my/api/v1/and/{id}/something") on your class and @RequestMapping(method = POST) on your method, no documentation will be generated. You have to specify a value="", e.g. @RequestMapping(value = "", method = POST) for it to be picked up.
The text was updated successfully, but these errors were encountered: