14
POST JSON échoue avec 415 type de support non pris en charge, Spring 3 mvc
J'essaye d'envoyer une requête POST à un servlet. La requête est envoyée via jQuery de cette manière: var productCategory = new Object(); productCategory.idProductCategory = 1; productCategory.description = "Descrizione2"; newCategory(productCategory); où est newCategory function newCategory(productCategory) { $.postJSON("ajax/newproductcategory", productCategory, function( idProductCategory) { console.debug("Inserted: " + idProductCategory); }); } et postJSON est $.postJSON …