I'm getting below error in the swagger editor when I try to import YAML file in the swagger editor.
Operations must have unique operationIds.
I have the controller where I have defined like
method = { RequestMethod.PUT, RequestMethod.POST }
So because of this 2 operation ID's are created with same name and getting this error. How can I fix this ? Apart from creating different controller methods for PUT and POST.