会话超时 jax-rs
使用像 jax-rs 这样的 Restful Web 服务定义会话超时有意义吗?据我所知,其余的都是无状态的(或者应该是无状态的),那么存储会话有什么意义呢? 如果我没有在配置文件 web.xml 中定义会话超时,会话将在 servlet 容器中存储多长时间?
Does it make sense do define session-timeout with restful web services like jax-rs? For what I know the rest is stateless (or should be stateless) so what the point of storing a session?
If I don't define the session-timeout in the configuration file web.xml for how long session will be stored in servlet container?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,REST 应该是无状态的,您不应该为其余调用创建会话。
如果您不指定会话超时,它将使用容器指定的默认超时。在 tomcat 中,默认值为 30 分钟。
Basically REST should be stateless and you should not create a session for the rest calls.
If you don't specify the session timeout, it uses the default one specified by the container. In tomcat the default is 30 minutes.