Reputation: 3556
I am trying to create a notification panel using Wicket 7 and Spring boot 1.5.3 as backend. For notifications I am using JMS and ActiveMQ with Spring boot JMS with Spring Boot.
My question is how can I auto refresh (re-render/update) a wicket component as soon as a message comes in from my JMS Listener.
Upvotes: 0
Views: 230
Reputation: 17533
You have two options:
Using WebSockets is recommended but depends whether your application is used by old browsers (IE9 and older).
Upvotes: 1