如何使用终端/命令行中的Curl来发布JSON数据以测试Spring REST?
我使用Ubuntu并在其上安装了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;
}
您需要将您的内容类型设置为application / json。 但-d
发送内容类型的application/x-www-form-urlencoded
,这在Spring方面是不被接受的。
看着卷曲手册页,我想你可以使用-H
:
-H "Content-Type: application/json"
完整的例子:
curl --header "Content-Type: application/json"
--request POST
--data '{"username":"xyz","password":"xyz"}'
http://localhost:3000/api/login
( -H
代表--header
, -d
代表--data
)
请注意,如果使用-d
, -request POST
是可选的,因为-d
标志意味着POST请求。
在Windows上,情况稍有不同。 请参阅评论主题。
尝试把你的数据放在一个文件中,比如body.json
,然后使用
curl -H "Content-Type: application/json" --data @body.json http://localhost:8080/ui/webapp/conf
您可能会发现有用的:https://github.com/micha/resty
它是一个CURL封装,它简化了命令行REST请求。 您将它指向您的API端点,并为您提供PUT和POST命令。 (从主页改编的例子)
$ resty http://127.0.0.1:8080/data #Sets up resty to point at your endpoing
$ GET /blogs.json #Gets http://127.0.0.1:8080/data/blogs.json
#Put JSON
$ PUT /blogs/2.json '{"id" : 2, "title" : "updated post", "body" : "This is the new."}'
# POST JSON from a file
$ POST /blogs/5.json < /tmp/blog.json
另外,通常仍然需要添加内容类型标题。 但是,您可以执行此操作来设置每个站点的每个方法的默认添加配置文件:设置默认RESTY选项
链接地址: http://www.djcxy.com/p/135.html上一篇: How to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?