Server-sent event does not work with jersey SSE

后端 未结 4 2028
无人共我
无人共我 2021-01-06 04:05

I am trying to use JavaScript SSE from Jersey. I have Following code in my resource. I am hosting on Java7 and Tomcat 7. I dont get any error. But I don\'t see data either o

相关标签:
4条回答
  • 2021-01-06 04:34

    Here is an example which might be helpful to you: http://en.kodcu.com/2013/11/jaxrs-2-html-5-server-sent-events-on-glassfish-4/

    And you may also refer to this page to see if your browser supports EventSource API http://www.eventsourcehq.com/browser-support

    0 讨论(0)
  • 2021-01-06 04:40

    I had the same problem and solved it by not setting the name of the event (i don't know why but this seems to be the solution)... here is the code

    OutboundEvent.Builder eventBuilder = new OutboundEvent.Builder();
    
    //WARNING: IF I SET THE NAME OF THE EVENT IT DOES NOT WORK
    //eventBuilder.name("message"); 
    
    eventBuilder.mediaType(MediaType.APPLICATION_JSON_TYPE);
    eventBuilder.data(EventData.class, data);
    OutboundEvent event = eventBuilder.build();
    
    0 讨论(0)
  • 2021-01-06 04:42

    The OutboundEvent.Builder.name method sets the value of the SSE event field. Therefore, it is not treated as a message and cannot be listened using the .onmessage handler. The solution is simply using the addEventListener method to register the listener method.

    This code should work with the Jersey sample above.

    <script type="text/javascript">
        var url = "webapi/broadcast";
        var source=new EventSource(url);
        source.addEventListener(
            "message",
            function(event){
                console.log(event.data);
                document.getElementById("result").innerHTML+=event.data + "<br>"; },
            false);
    </script>
    

    I found this article to be useful to understand how the SSE works in the browser side: http://www.sitepoint.com/server-sent-events/.

    0 讨论(0)
  • 2021-01-06 04:52

    I have to do the following to make it work with tomcat 7.0.69 and java 1.8, and jersey 2.22.2 Just sharing it if it comes to any use of any body.

    1. Add the following dependency in your Pom file :

        <dependency>
          <groupId>org.glassfish.jersey.containers</groupId>
          <artifactId>jersey-container-servlet-core</artifactId>
          <version>2.22.2</version>
        </dependency>
      
        <dependency>
          <groupId>org.glassfish.jersey.core</groupId>
          <artifactId>jersey-client</artifactId>
          <version>2.22.2</version>
        </dependency>
      <!-- If you use json -->
        <dependency>
          <groupId>org.glassfish.jersey.media</groupId>
          <artifactId>jersey-media-json-processing</artifactId>
          <version>2.22.2</version>
        </dependency>
      <dependency>
            <groupId>org.glassfish.jersey.containers</groupId>
            <!-- if your container implements Servlet API older than 3.0, use "jersey-container-servlet-core"  -->
            <artifactId>jersey-container-servlet</artifactId>
            <version>2.22.2</version>
          </dependency>
      
          <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-sse</artifactId>
            <version>2.22.2</version>
          </dependency>
      
    2. Needs to be servlet 3 so Heading of the web.xml should be like this : < ?xml version="1.0" encoding="UTF-8"? > < web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0" >

    3. Jersey Servlet Container should be async-supported, so add it in the jersey servlet in the web.xml :

    < async-supported>true< /async-supported >

    1. If you use any filter make sure it also async-supported :

      < async-supported>true< /async-supported>

    0 讨论(0)
提交回复
热议问题