HTTP 405 (Method not found) , when URL exists and you are trying to use an HTTP method that is not allowed for this URL.
if you call POST below .../test , then it will return HTTP 405 and vice versa.
@RequestMapping(value = "/test", method = RequestMethod.GET)
if there is no URL mapping for any of the HTTP methods, then it will return HTTP 404.
To find out all current mappings on this particular download instance, just go to the browser
http:
K139 source share