How to reply to unauthenticated user in Spring 4 STOMP over WebSocket configuration?

后端 未结 2 2039
一生所求
一生所求 2021-01-13 14:48

I\'m experimenting with Spring 4 WebSocket STOMP application. Is there a way to reply to a single unauthenticated user on condition that each user has unique sessio

2条回答
  •  太阳男子
    2021-01-13 15:01

    You can assign an anonymous identity to incoming users. There are two ways to do it.

    One, you can configure a sub-class of DefaultHandshakeHandler that overrides determineUser and assigns some kind of identity to every WebSocketSession. This requires 4.0.1 by the way (currently build snapshots are available) that will be released on Monday Jan 23, 2014.

    Two, the WebSocket session will fall back on the value returned from HttpServletRequest.getUserPrincipal on the handshake HTTP request. You could have a servlet Filter wrap the HttpServletRequest and decide what to return from that method. Or if you're using Spring Security which has the AnonymousAuthenticationFilter, override its createAuthentication method.

提交回复
热议问题