ajax使用向Spring MVC发送JSON数据出现 org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported错误

ajax使用向Spring MVC发送JSON数据时,后端Controller在接受JSON数据时报org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported的错误。

ajax使用向Spring MVC发送JSON数据出现 org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported错误

解决办法是设置ajax的contentType为"application/json"

 $.ajax({
$.ajax({
url : urladdress,
type : "POST",
dataType : 'JSON',
data : JSON.stringify(JsonObj), //设置请求的contentType为"application/json"
contentType: "application/json", success : function(response) {
//处理返回的响应结果
}
});

通过上述设置可以成功解决一些项目出现的这个问题,其他项目可能会有不一样或还有其他的解决办法。。。

上一篇:Spring MVC生成JSON数据


下一篇:SpringCloud分布式微服务搭建(三)