Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

java

servlets

web

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 notification is to keep polling after certain time interval . that is pull notification.

but this causes unnecessary hits to server.

how Can I use push notification from server upon action. .? (I am using java(servlet/jsp) with tomcat)

like image 831
Nirbhay Mishra Avatar asked Apr 15 '13 08:04

Nirbhay Mishra


1 Answers

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

like image 143
suat Avatar answered Oct 15 '22 23:10

suat