I am doing a personal project to learn about java websockets. Basically my HTML clients sends messages to my server through JSR 356 websockets. The endpoint @ServerEndpoint("/wsServer")
receives all messages from the clients and I would like to see those messages in another portal/endpoint @ServerEndpoint("/wsDashboard")
as a dashboard in real time.
I would appreciate any idea, documentation or piece of code to start with as I really have no idea, I have seen solutions like apache kafka, but I am not sure if this is what I need.
thanks