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

后端 未结 14 1880
执念已碎
执念已碎 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:24

    1.a. Add following in applicationContext-mvc.xml

    xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc

    1. add jackson library

提交回复
热议问题