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

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

    I faced this issue when I integrated spring boot with spring mvc. I solved it by just adding these dependencies.

    
    org.codehaus.jackson
    jackson-mapper-asl
    1.9.13
    
    
    com.fasterxml.jackson.core
    jackson-databind
    2.5.3
    
    

提交回复
热议问题