会话超时 jax-rs

发布于 2024-10-25 21:11:18 字数 137 浏览 1 评论 0原文

使用像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安人多梦 2024-11-01 21:11:18

基本上,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文