我使用 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;
}
您需要将 content-type 设置为 application / json。但-d
发送 Content-Type application/x-www-form-urlencoded
,这在 Spring 方面是不被接受的。
-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 选项