Does Spring framework have any method to efficiently push data to web client with out cluttering the server? Long-polling is the preferred method.
Asked
Active
Viewed 338 times
1
-
Use things like WebSockets, SSE (as opposed to long-polling which uses HTTP as usual). – Tiny Dec 22 '15 at 14:35
-
@Tiny my consideration is server side implementation not the client side. Its ok to use sse or websockets. – Vishnu G S Dec 22 '15 at 16:26
-
A reference implementation of JSR-356 (Tyrus) is the WebSockets implementation available in Java EE 7. (Not sure about Spring). – Tiny Dec 22 '15 at 16:34