1

我正在使用 Servlet 在 Java Stack 上的 Web 应用程序中实现 SSE。我目前面临两个关键问题。让我首先介绍我的网页和 Servlet 代码,然后是我面临的问题。

网页代码:

<script type="text/javascript">
function registerSSE() {
var source = new EventSource("http://www.sample.com/BootStrap/NotificationServlet");
source.addEventListener('StartProductionRun', function(e) {
    // Get the data and identify the instrument Name/Id
    var dataReceived = e.data;
    document.getElementById(dataReceived + "_button").disabled = true;
    }, false);
}

function StartProduction(instrument) {
var dataString = 'instrumentName='+ instrument; 

// call ajax to submit the form and start the production  run
$.ajax({
    type: 'POST',
    url: 'http://localhost:8080/BootStrap/ProductionRunServlet',
    data: dataString,
    success: function() {
        $('#Status').html("<div id='message'></div>"); 
        $('#message').html("<h4 aling=\"centre\">Prudction Run for Instrument " + instrument  + " initiated.</h4>")
        .hide()
        .fadeIn(5000);
    }
});
}

</script>

小服务程序代码:

public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    response.setContentType("text/event-stream;charset=UTF-8");
    response.setHeader("Cache-Control", "no-cache");

    PrintWriter out = response.getWriter();
    NotificationService notificationService = null;

    while (true) {
        notificationService = NotificationService.getInstance();

        if (notificationService.getNotificationCount() > 0 ) {

            String notificationValue = notificationService.getNotification(0);
            String[] keyValue = notificationValue.split(":");

            out.print("event:" + keyValue[0] + "\n");
            out.print("data: " + keyValue[1] + "\n");
            out.print("retry:" + 1000 + "\n\n");

            out.flush();
        }
        else {
            out.print(": time stream \n");
            out.print("retry:" + 1000 + "\n\n");
            out.flush();
        }

       try {
             Thread.sleep(1000);
            } catch (InterruptedException e) {
             e.printStackTrace();
            }
    }
}

现在的问题:

  1. 该网页将被多个用户同时查看。我希望将数据推送给查看该页面的所有用户。目前,当我在我的机器上本地运行时,即使我打开 Chrome 和 Firefox,我也没有在两个浏览器中收到通知。它只有一个。
  2. 另外,如果我让浏览器运行一段时间,我会发现即使 servlet 基于某些事件推送数据。我没有在浏览器上收到通知。

我需要确保:通知被推送给正在查看该特定页面的所有客户端,无论他们在页面上做什么,或者该页面仅用于查看信息。

期待着我能得到的所有帮助来完成这项工作。另外,很想知道我是否可以使用其他替代方法。

4

2 回答 2

1

您的 servlet 代码运行良好,虽然我没有做太多工作(曾经做过一个 jsp 项目)。我认为,你错过了javascript中的一些东西?我认为javascript中也应该有一个计时器/线程/循环,以连续获取所有推送的数据。IE,

setInterval(
function(){
// code which needs to run every 5sec
},5000);

我希望这会有所帮助。

于 2013-12-27T06:05:35.340 回答
0

在使用之前,您应该检查EventSource该浏览器是否可用。也许其中一个浏览器不支持它。

于 2014-01-27T16:35:37.627 回答