'Handler processing failed; nested exception is java.lang.NoSuchMethodError: org.springframework.web.util.WebUtils.getNativeRequest
Handler processing failed; nested exception is java.lang.NoSuchMethodError: org.springframework.web.util.WebUtils.getNativeRequest(Ljavax/servlet/ServletRequest;Ljava/lang/Class;)Ljava/lang/Object; I am getting this error after submitting form
Solution 1:[1]
It looks like you have class WebUtils from Spring 2.5.x branch (this method has been added in 3.x branch).
Please check your dependencies and search for mixing of libraries from 3.x and 2.5.x branch.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Michal Borek |
