0

我已经在互联网上查看了一段时间,但找不到我的问题的答案......

我正在使用服务器端的 java 和客户端的纯 HTML/javascript 构建一个 Web 应用程序。

我的想法是使用 JSR 356 实现 websocket,并且需要在整个会话期间保持一些数据(用户登录详细信息)。

问题:有没有办法在整个会话期间保持数据持久性,这样我就不需要在每次调用时再次发送它(类似于 jsp/servlet EL)?

例如

${sessionScope["userId"]}

谢谢

4

1 回答 1

0

I ended up adding the userId to the URL on the websocket so each session is linked to the user while the client stores the userId in the localStore to keep track of it.

于 2015-10-03T22:22:03.453 回答