I would like to understand how convertAndSendToUser works in Spring SockJS+Websocket framework.
In client, we would connect as
stompClient.connect(lo
I did not do any specific configuration and I can just do this:
@MessageMapping('/hello') protected void hello(Principal principal, Map message) { String username = principal.getName(); }