POST JSON fails with 415 Unsupported media type, Spring 3 mvc

后端 未结 14 1842
执念已碎
执念已碎 2020-11-22 09:46

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         


        
14条回答
  •  暖寄归人
    2020-11-22 10:21

    I resolved this issue by adding jackson-json data binding to my pom.

    
            com.fasterxml.jackson.core
            jackson-databind
            2.6.3
    
    

提交回复
热议问题