我正在尝试向Servlet发送POST请求。通过jQuery以这种方式发送请求:
var productCategory = new Object();
productCategory.idProductCategory = 1;
productCategory.description = "Descrizione2";
newCategory(productCategory);
其中NewCategory为
function newCategory(productCategory)
{
$.postJSON("ajax/newproductcategory", productCategory, function(
idProductCategory)
{
console.debug("Inserted: " + idProductCategory);
});
}
而PostJSON是
$.postJSON = function(url, data, callback) {
return jQuery.ajax({
'type': 'POST',
'url': url,
'contentType': 'application/json',
'data': JSON.stringify(data),
'dataType': 'json',
'success': callback
});
};
使用Firebug,我看到JSON被正确发送:
{"idProductCategory":1,"description":"Descrizione2"}
但我得到了415个不支持的媒体类型。Spring MVC控制器具有签名
@RequestMapping(value = "/ajax/newproductcategory", method = RequestMethod.POST)
public @ResponseBody
Integer newProductCategory(HttpServletRequest request,
@RequestBody ProductCategory productCategory)
几天前它起作用了,现在不行了。如果需要,我将显示更多代码。