假设我有一个具有
的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方法的响应?