DispatcherServlet and ServletWrapping/ForwardingController accept any HTTP method by default

Issue: SPR-4799
This commit is contained in:
Juergen Hoeller
2015-12-18 12:57:18 +01:00
parent 08748ecaa4
commit 3d87718fc6
5 changed files with 35 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ public enum HttpMethod {
* @since 4.2.4
*/
public boolean matches(String method) {
return name().equals(method);
return (this == resolve(method));
}
}