I am trying to send a POST request to a servlet. Request is sent via jQuery in this way:
var productCategory = new Object(); productCategory.idProductCategor
I had the same issue. adding
<mvc:annotation-driven /> <mvc:default-servlet-handler />
to the spring-xml solved it
I had a similar problem but found the issue was that I had neglected to provide a default constructor for the DTO that was annotated with @RequestBody.