14
POST JSON이 415 지원되지 않는 미디어 유형, Spring 3 mvc로 실패
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', …