错误500 post angularjs jersey

时间:2016-04-27 09:08:32

标签: javascript java angularjs jersey

这是问题

This is the error

以下是调用球衣部分的代码:

$http.post('/easyshow/api/shows/add', selectedShows).then(
function(data) {
    alert("Yes");
},
function(data, status, headers, config, statusText) {
    alert("No");
    console.log("data : " + data + "status : " + status + "headers : " + headers +
        "config : " + config + "statusText : " + statusText);
});

最后是球衣方法:

@POST
@javax.ws.rs.Path("/add")
@Consumes(MediaType.APPLICATION_JSON)
public Response addShows(List<ScannedShow> body) {
    ...
    Response res = Response.status(Response.Status.OK) // 200
            .build();

    return res;
}

服务器端没有错误。 Everythings工作,创建和存储对象。但总有这个错误500,所以我永远不会去当时的成功案例...

0 个答案:

没有答案