우분투를 사용하고 그 위에 cURL 을 설치 했습니다. cURL을 사용하여 Spring REST 애플리케이션을 테스트하고 싶습니다. Java 측에서 POST 코드를 작성했습니다. 그러나 cURL로 테스트하고 싶습니다. JSON 데이터를 게시하려고합니다. 예제 데이터는 다음과 같습니다.
{"value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme 3","description":null,"identity":"Configuration Deneme 3","version":0,"systemId":3,"active":true}
이 명령을 사용합니다.
curl -i \
-H "Accept: application/json" \
-H "X-HTTP-Method-Override: PUT" \
-X POST -d "value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme 3","description":null,"identity":"Configuration Deneme 3","version":0,"systemId":3,"active":true \
http://localhost:8080/xx/xxx/xxxx
이 오류를 반환합니다.
HTTP/1.1 415 Unsupported Media Type
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=utf-8
Content-Length: 1051
Date: Wed, 24 Aug 2011 08:50:17 GMT
오류 설명은 다음과 같습니다.
요청 엔티티가 요청 된 메소드 ()에 대해 요청 된 자원이 지원하지 않는 형식이므로 서버가이 요청을 거부했습니다.
Tomcat 로그 : "POST / ui / webapp / conf / clear HTTP / 1.1"415 1051
cURL 명령의 올바른 형식은 무엇입니까?
이것은 Java 측 PUT
코드입니다 (GET 및 DELETE를 테스트했으며 작동합니다).
@RequestMapping(method = RequestMethod.PUT)
public Configuration updateConfiguration(HttpServletResponse response, @RequestBody Configuration configuration) { //consider @Valid tag
configuration.setName("PUT worked");
//todo If error occurs response.sendError(HttpServletResponse.SC_NOT_FOUND);
return configuration;
}