how push notification (java/ servlet) for web application?

前端 未结 4 2049
深忆病人
深忆病人 2020-12-05 11:59

In my application I have to show a notification on a particular action taken place ?

I have to show logged in user a notification then. .

1-One way to get no

相关标签:
4条回答
  • 2020-12-05 12:03

    You can use WebSockets for this purpose. There are multiple implementations available like jwebsocket.

    0 讨论(0)
  • 2020-12-05 12:04

    Take a look at the Comet model and Servlet 3.0 specification.

    0 讨论(0)
  • 2020-12-05 12:15

    Nowadays a promising way of client-server communication is to use Websockets.

    See What are Long-Polling, Websockets, Server-Sent Events (SSE) and Comet to see some other ways together with the Websockets and for an advantages of Websockets with an introduction see An Introduction To WebSockets

    0 讨论(0)
  • 2020-12-05 12:26

    You can try Servlet3.0 Async functionality.

    Here is an Chat example which does push : Servlet 3.0 Async Example

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