如何使用Struts 2在Java中实现长轮询?

时间:2013-09-13 20:17:23

标签: java struts2 comet long-polling

我想在java Web应用程序中实现长轮询。基本上,当用户登录时,我希望他被挂钩到通知服务中。我希望在服务器发生时向他推出新的通知,我希望他能够实时查看这些通知。 (所以短期轮询或定期从客户端检查服务器是不够的。)

我该怎么做?基本上,我想要一种方法从服务器推送一个字符串消息,并让客户端立即接收它。

我听过一些引用,可以使用服务器上的“http chunk transfer”标头来完成。但是如何在客户端设置?

2 个答案:

答案 0 :(得分:4)

虽然我很晚才回答,但我会继续并包括我的回答。如果您使用的是HTML 5, 尝试使用HTML 5 - Server Sent Events(SSE)和HTML 5 - Web Workers。 请注意,到目前为止,MS IE不支持SSE。

在Struts2上,可能会有一个标准操作来处理请求。

另见question。 您还可以查看当前的兼容性here。 有一个演示here,在那里我们可以看到周期性的请求(在网络监视器中)并且可以很好地了解可以做什么。

另请注意,URL(事件源)只能分配一次。

更新:根据我的其他内容(请参阅herehere),SSE实际上维护了一个连接,以便从服务器接收定期更新。因此,服务器也可以具有“无限循环”。一直持续到客户端终止然后尝试重新连接,在这种情况下服务器可以再次重新发送事件。

确定客户遗漏哪些事件应由实施处理,如果或在必要时处理。

以下是demos SSE with a connection being maintained的链接。 根据{{​​3}},我们还应该能够发送最后一个事件ID'在标题中。但是还没找到一个使用它的例子!

更新2 :使用HttpServletResponse维护连接并返回响应的示例,以及使用s2流结果重复轮询操作并返回响应的示例。关于没有保持连接的轮询频率,chrome似乎是3秒,因为firefox的更大。

1。)SSE.java

public class SSE extends ActionSupport {

    public String handleSSE() {

        HttpServletResponse response = ServletActionContext.getResponse();

        response.setContentType("text/event-stream");
        response.setCharacterEncoding("UTF-8");

        System.out.println("Inside handleSSE()+suscribe "+Thread.currentThread().getName());

        int timeout = 15*1000;
        long start = System.currentTimeMillis();
        long end = System.currentTimeMillis();

        while((end - start) < timeout) {

            try {
                PrintWriter printWriter = response.getWriter();
                printWriter.println(  "data: "+new Date().toString() );
                printWriter.println(); // note the additional line being written to the stream..
                printWriter.flush();
            } catch (IOException e) {
                e.printStackTrace();
            }

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

            end = System.currentTimeMillis();

        }

        System.out.println("Exiting handleSSE()-suscribe"+Thread.currentThread().getName());

        return SUCCESS;
    }
}

2。)SSES2.java

public class SSES2 extends ActionSupport {


    private InputStream sseStream;

    public InputStream getSseStream() {
        return sseStream;
    }

    public String handleSSES2() {
        System.out.println("Inside handleSSES2() ");
        String result = "data: "+new Date().toString() + "\n\n";
        sseStream = new ByteArrayInputStream(result.getBytes() );
        System.out.println("Exiting handleSSES2() ");
        return SUCCESS;
    }
}

3。)struts.xml

<struts>
    <include file="strutsBase.xml"/>
</struts>

4。)strutsBase.xml

<struts>

    <!-- Configuration for the default package. -->
    <package name="strutsBase" extends="struts-default" >


        <!-- Default interceptor stack. -->
        <default-interceptor-ref name="basicStack"/>

        <action name="suscribe" class="com.example.struts2.sse.action.SSE" method="handleSSE">
            <result name="success">/view/empty.txt</result>
            <!-- we don't need the full stack here -->
        </action>

        <action name="suscribeStateless" class="com.example.struts2.sse.action.SSES2" method="handleSSES2">
            <result name="success" type="stream">
                <param name="contentType">text/event-stream</param>
                <param name="inputName">sseStream</param>
            </result>
        </action>


    </package>
</struts>

sse.html

<!doctype html>
<meta charset="utf-8">
<title>EventSource demo</title>
<h1>new EventSource() for S2</h1>
<p><output id="result">OUTPUT VALUE</output></p>
<script>
(function(global, window, document) {
  'use strict';

  function main() {
    window.addEventListener('DOMContentLoaded', contentLoaded);
  }

  function contentLoaded() {
    var result = document.getElementById('result');
    var stream = new EventSource('suscribe.action');
    stream.addEventListener('message', function(event) {
      var data = event.data;
      result.value = data;
    });
  }

  main();
})(this, window, window.document);
</script>
<!-- 
Also See :
http://server-sent-events-demo.herokuapp.com/
 -->

sseAction.html

Same as sse.html except that EventSource url is 'suscribeStateless.action' instead of suscribe.action

答案 1 :(得分:1)

如果可以的话,我建议使用像Atmosphere这样的现有库。 Atmosphere会自动尝试更现代化的东西,但如果需要,可以回到长时间的轮询。长时间轮询可能有点棘手,无法手动工作。有一些未记录的内容,例如某些代理或负载均衡器需要某些配置设置或填充以使用长轮询。