openapi-generator
openapi-generator copied to clipboard
Add support of @ResponseStatus for jaxrs-spec generator
According to the documentation the spring generator adds the @ResponseStatus annotation when useResponseEntity is disabled.
It would be useful to have a similar config option for the jaxrs-spec generator (according to the documentation this is not available currently).
2 proposals:
- Add the
@ResponseStatusannotation whenreturnResponseis disabled. This would alter the default behavior. - Create a new config option, e.g.
responseStatus, that is disabled by default and can be set totrueto enable it. To avoid conflicts the config optionreturnResponsewould also have to be disabled before adding the annotation.