1
我想在「createPost」方法中引入兩個String params(類型和內容)。如何使用curl使用2個參數進行POST?休息。 Java
我用這行:
curl -i -u pepe:pepe -d 'type=Link&content=www' --header "Content-Type: application/json" http://localhost:8080/web-0.0.1-SNAPSHOT/api/user/post
不過...。那行推出的第一個參數 「type = Link的&含量= WWW」,並留下第二個空。
的方法是這樣的:
@POST
@Path("/post")
@Consumes(MediaType.APPLICATION_JSON)
public Response createPost(@FormParam("type") String type, @FormParam("content") String content) {
postEJB.createPostUserRest(type, content);
URI userURI = uriInfo.getAbsolutePathBuilder().build();
return Response.created(userURI).build();
}
我怎麼會在第二,第一和「WWW」進入「鏈接」?
非常感謝所有人,併爲我可憐的英語感到難過。