调用递归ajax时无法访问成功函数

时间:2016-06-20 16:42:26

标签: java jquery ajax jersey comet

我正在构建一个具有推送通知功能并使用Jersey创建API的系统 我读了一篇关于彗星方法的article并最终得到以下代码:

Index.js

function checkExamNotification() {
    $.ajax({
        url: contextPath + '/api/notification/checkExamNotification',
        type: 'get',
        data: {
            accountId: accountId,
            sessionId: sessionId
        },
        success: function (res) {
            console.log("success");
            displayNumberOfNotification();
            checkExamNotification();
        },
        error: function (jqXHR, textStatus, errorThrown) {
            if (textStatus === "timeout") {
                checkExamNotification();
            }
        }
    });
}

$(document).ready(function () {
    $.ajaxSetup({
        timeout: 1000*60*3
    });
    checkExamNotification();
});

检查考试通知API

@GET
@Path("/checkExamNotification")
public Response checkExamNotification(@QueryParam("accountId") int accountId, @QueryParam("sessionId") String sessionId) throws InterruptedException {
    if (memCachedClient.checkSession(sessionId, accountId)) {
        while (!examNotificationQueue.hasItems()) {
            Thread.sleep(5000);
        }

        ExamNotificationQueueItemModel examNotificationQueueItemModel = examNotificationQueue.dequeue();
        if (examNotificationQueueItemModel.getAccountId() == accountId) {
            LOGGER.info("[START] Check exam notification API");
            LOGGER.info("Account ID: " + accountId);
            LOGGER.info("Get notification with exam ID: " + examNotificationQueueItemModel.getExamId());

            ExamEntity exam = examDAO.findById(examNotificationQueueItemModel.getExamId());
            NotificationEntity notification = notificationDAO.findByExamId(exam.getExamid());
            notification.setSend(1);
            notificationDAO.getEntityManager().getTransaction().begin();
            notificationDAO.update(notification);
            notificationDAO.getEntityManager().getTransaction().commit();

            LOGGER.info("[END]");
            String result = gson.toJson(examNotificationQueueItemModel);
            return Response.status(200).entity(result).build();
        } else {
            examNotificationQueue.enqueue(examNotificationQueueItemModel);
            Thread.sleep(5000);
            checkExamNotification(accountId, sessionId);
        }

    }
    return Response.status(200).entity(gson.toJson("timeout")).build();
}

从我的调试中,API确实完成了返回,但成功事件SOMETIMES并未触发。
是的,有时控制台日志成功,但有时它没有 有人可以向我解释一下这个案子吗? 提前致谢。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

关注@peeskillet评论后确定。这是我最后的代码。

检查考试通知API

@GET
@Produces(SseFeature.SERVER_SENT_EVENTS)
@Path("/checkExamNotification")
public EventOutput checkExamNotification(@QueryParam("accountId") final int accountId, @QueryParam("sessionId") final String sessionId) {
    final EventOutput eventOutput = new EventOutput();
    if (memCachedClient.checkSession(sessionId, accountId)) {
        new Thread(new Runnable() {
            public void run() {
                try {
                    if (examNotificationQueue.hasItems()) {
                        ExamNotificationQueueItemModel examNotificationQueueItemModel = examNotificationQueue.dequeue();
                        if (examNotificationQueueItemModel.getAccountId() == accountId) {
                            LOGGER.info("[START] Check exam notification API");
                            LOGGER.info("Account ID: " + accountId);
                            LOGGER.info("Get notification with exam ID: " + examNotificationQueueItemModel.getExamName());
                            String result = gson.toJson(examNotificationQueueItemModel);
                            final OutboundEvent.Builder eventBuilder
                                    = new OutboundEvent.Builder();
                            eventBuilder.data(result);
                            final OutboundEvent event = eventBuilder.build();
                            eventOutput.write(event);
                            LOGGER.info("[END]");
                        } else {
                            examNotificationQueue.enqueue(examNotificationQueueItemModel);
                        }
                    }

                } catch (IOException e) {
                    throw new RuntimeException(
                            "Error when writing the event.", e);
                } finally {
                    try {
                        eventOutput.close();
                    } catch (IOException ioClose) {
                        throw new RuntimeException(
                                "Error when closing the event output.", ioClose);
                    }
                }
            }
        }).start();
    }

    return eventOutput;
}

Index.js

function checkExamNotification() {
    var url = contextPath + '/api/notification/checkExamNotification?accountId=' + accountId + '&sessionId=' + sessionId;
    var source = new EventSource(url);
    source.onmessage = function (event) {
        displayNumberOfNotification();
    };
}