14
POST JSON schlägt mit 415 nicht unterstütztem Medientyp Spring 3 mvc fehl
Ich versuche, eine POST-Anfrage an ein Servlet zu senden. Die Anfrage wird über jQuery folgendermaßen gesendet: var productCategory = new Object(); productCategory.idProductCategory = 1; productCategory.description = "Descrizione2"; newCategory(productCategory); wo newCategory ist function newCategory(productCategory) { $.postJSON("ajax/newproductcategory", productCategory, function( idProductCategory) { console.debug("Inserted: " + idProductCategory); }); } und postJSON ist $.postJSON = …