Ubuntu kullanıyorum ve üzerine cURL yükledim . Spring REST uygulamamı cURL ile test etmek istiyorum. POST kodumu Java tarafına yazdım. Ancak, bunu cURL ile test etmek istiyorum. Bir JSON veri göndermeye çalışıyorum. Örnek veriler şöyledir:
{"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}
Bu komutu kullanıyorum:
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
Bu hatayı döndürür:
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
Hata açıklaması şudur:
İstek varlığı, istenen yöntem () için istenen kaynak tarafından desteklenmeyen bir biçimde olduğundan sunucu bu isteği reddetti.
Tomcat günlüğü: "POST / ui / webapp / conf / clear HTTP / 1.1" 415 1051
CURL komutunun doğru biçimi nedir?
Bu benim Java yan PUT
kodu (GET ve DELETE test ettik ve çalışıyorlar):
@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;
}