作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 个应用程序:第一个是用 ruby(它是 redmine)编写的,第二个是 Spring boot 应用程序,两者都托管在同一个 tomcat 服务器上。我怎样才能做到这一点?
最佳答案
不允许共享 session 。根据(servlet 规范)定义, session 属于单个 Web 应用程序。
引用:Servlet Spec 4.0 , 第 7.3 节:
HttpSession
objects must be scoped at the application (or servlet context) level. The underlying mechanism, such as the cookie used to establish the session, can be the same for different contexts, but the object referenced, including the attributes in that object, must never be shared between contexts by the container.
您可以通过设置共享缓存等方式解决此限制,但从安全或资源使用的角度来看,它总是很脆弱且存在潜在危险。
关于spring - 如何在两个应用程序之间共享同一个 session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49147943/
我是一名优秀的程序员,十分优秀!