«http-status-code-415» 태그된 질문

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', …

15
JSON에서 HTTP 415 지원되지 않는 미디어 유형 오류
JSON 요청으로 REST 서비스를 호출하고 있는데 HTTP 415 "Unsupported Media Type"오류로 응답합니다 . 요청 콘텐츠 유형은로 설정됩니다 ("Content-Type", "application/json; charset=utf8"). 요청에 JSON 개체를 포함하지 않으면 제대로 작동합니다. google-gson-2.2.4JSON 용 라이브러리를 사용하고 있습니다. 몇 가지 다른 라이브러리를 사용해 보았지만 아무런 차이가 없었습니다. 아무도이 문제를 해결하도록 도와 주시겠습니까? 내 코드는 다음과 같습니다. …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.