I am using spring doc-open API with version (1.2.32). Now I would like to sort my endpoints in UI by its HTTP method (reverse order) and I am not using any tags on my endpoint method.
If I have 4 endpoint post, get, put, delete then I want to display methods Put, post, get, delete
I tried the following, which does not seem to work:
springdoc.swagger-ui.operationsSorter=(method and alpha)
How do I resolve this problem?