使用Long列表作为参数发布休息呼叫

时间:2019-05-14 18:49:48

标签: java rest

@Path("/submit")
public List<SaveCResponse> submitC(List<Long> ids) {

    ICService cService = CServiceBootstrap.getCService();
    List<SaveCResponse> cResponses = new ArrayList<>();
    for (Long id : ids) {
        SaveCResponse cResponse = cService.reSubmitC(id);
        cResponses.add(cResponse);
    }
    return cResponses;

}

如何使用邮递员调用上述方法。我的意思是如何传递ID列表?

0 个答案:

没有答案