|
我使用 Ubuntu 并安装在上面cURL。我想用 cURL 测试我的 Spring REST 应用程序。我在 Java 端写了我的 POST 代码。但是,我想用 cURL 测试它。我正在尝试发布 JSON 数据。示例数据如下:
3 K' H2 e' L$ n9 i& w{"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}
g! \( C, i' a, j' r @- b 我用这个命令:2 e3 G6 @1 \9 W5 I2 U& C
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
9 t) M: F2 z( }+ D" i7 r2 G 回到这个错误:, ]! E7 {5 ^7 ~8 X
HTTP/1.1 415 Unsupported Media TypeServer: Apache-Coyote/1.1Content-Type: text/html;charset=utf-8Content-Length: 1051Date: Wed,24 Aug 2011 08:50:17 GMT
8 P7 R* V7 e! _% j; I+ g; h 错误描述如下:
) |# M/ ]/ o4 }1 ?: J由于请求实体的格式不受请求方法 () 请求资源的支持,服务器拒绝了此请求。
. V( \& T- h- u5 ~1 qTomcat 日志:“POST /ui/webapp/conf/clear HTTP/1.1”415 1051
/ a: F; s2 Q9 C4 ZcURL 命令的正确格式是什么?
0 H6 h/ p8 \& k4 r5 D( v这是我的 Java 端PUT代码(我已经测试GET 和 DELETE 他们可以工作):
4 K6 e2 g( _$ s, o4 z. l- M. U8 }@RequestMapping(method = RequestMethod.PUT)public Configuration updateConfiguration(HttpServletResponse response,@RequestBody Configuration configuration) { //consider @Valid tag configuration.setName("UT worked"); todo If error occurs response.sendError(HttpServletResponse.SC_NOT_FOUND); return configuration;}1 Y/ V) V- R" }% \2 q r7 n J
2 M5 z' ^8 E! A- | 解决方案:
! B Q% ?% F0 I. E# E3 H0 t! K$ e 您需要将内容类型设置为 application/json。但是-d(或--data)发送 Content-Type application/x-www-form-urlencoded,这在 Spring 方面是不被接受的。7 A2 ~9 N7 B% C9 s" E9 [5 S
查看curl 手册页,我想你可以用-H(或--header):! b1 I9 e5 h1 p% w% V
-H "Content-Type: application/json"* R* S9 O+ `" i0 T
完整示例:! i& I6 v c5 H, E$ I3 Z+ k
curl --header "Content-Type: application/json" \ --request POST \ --data '{"username":"xyz","password":"xyz"}' \ http://localhost:3000/api/login/ `) N; [2 T0 c' `8 h: ?% [
(-H是--header,-d的缩写--data)! j: m8 ?: K j
请注意,如果你使用它,这个-request POST是可选-d的,因为该-d标志意味着 POST 请求。
3 u8 U. H, q4 g1 ^0 o1 [! `在 Windows 上,情况略有不同。请参阅评论线程。 |
|