JAX-RS annotations do not represent all the HTTP verbs, for example @java.ws.rs.PATCH is missing.
A custom annotation may be created and it must be annotated with @javax.ws.rs.HTTPMethod("<VERB>") annotation.
swagger-core has its own implementation, @io.swagger.jaxrs.PATCH. However, most of us have created our own versions as well (@com.company.project.PATCH). The plugin must support them.
JAX-RS annotations do not represent all the HTTP verbs, for example
@java.ws.rs.PATCH
is missing.A custom annotation may be created and it must be annotated with
@javax.ws.rs.HTTPMethod("<VERB>")
annotation.swagger-core has its own implementation,
@io.swagger.jaxrs.PATCH
. However, most of us have created our own versions as well (@com.company.project.PATCH
). The plugin must support them.