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
Currently the swagger-jaxrs2 generated Swagger-UI has no order for each "GET", "PUT", "POST"... etc method. It randomly spits the endpoints out as it pleases. Is there a way to sort them? I tried using @JsonPropertyOrder({"POST","GET","PUT","DELETE"}) , which is the order I would like them in, but to no success. Also tried @JsonPropertyOrder(alphabetic = true) . This annotation was included in the Jersey Controller class.