Jersey Test + Grizzly测试POST方法

时间:2014-07-17 15:56:51

标签: java junit jersey grizzly

假设我有一个具有

的REST方法
@Path("/Customers/Add")
@POST
@Produces({MediaType.APPLICATION_JSON})
@Consumes(MediaType.APPLICATION_JSON)
public JSONResponse addCustomer(Customer customer){
//Post method
}

我有一个灰熊容器+球衣测试。

WebResource webResource = client().resource(getBaseURI());
JSONResponse response = webResource
            .path("/Customers/Add")
            .type(MediaType.APPLICATION_JSON_TYPE)
            .post(hypo);

我自己的JSONResponse类

public class JSONResponse{
private boolean success;
private Customer customer;
public JSONResponse(){}
//getters and setters 
}

如何编写POST REST方法的响应?

0 个答案:

没有答案