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
If there is a request mapping as below: @RequestMapping(value={"/path1", "path2"})
Then in the generaeted properties file entries of this is found as below: /{"/path1",\ "/path2"}.POST.param.operationType=
As a result the swagger api can't find the request mapping in the properties file as it searches for entries like: /path1.POST.param.operationType.
The fix should be to generate multiple entries in the properties file like: /path1.POST.param.operationType /path2.POST.param.operationType
for each of the values of maultivalued request mapping.