Spring MVC 415 Unsupported Media Type

前端 未结 7 1338
再見小時候
再見小時候 2020-11-28 13:01

I am using Spring 3.2 and try to use an ajax post request to submit an array of json objects. If this is relevant, I escaped all special characters.

I am getting an

7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 13:41

    1) Add the following dependencies

    
        com.fasterxml.jackson.core
        jackson-core
        ${jackson-version} // 2.4.3
    
    
        com.fasterxml.jackson.core
        jackson-databind
        ${jackson-version} // 2.4.3
    
    

    2) If you are using @RequestBody annotation in controller method make sure you have added following in xml file

    
    

    This should resolve the 415 status code issue.

提交回复
热议问题