Tomcat:如何在两个应用程序之间共享数据?
有没有办法使用 Tomcat 5.5 在 JSP 应用程序之间共享数据?
这些应用程序在同一台服务器上运行。
共享数据不应该在系统中长时间保留,并且不能存储在cookie中,因为它大于4Kb。
谢谢! :)
Is there any way to share data between to JSP applications using Tomcat 5.5?
The applications are running in the same server.
The shared data should not persist in the system for many time and cannot be stored in cookies because it's bigger than 4Kb.
Thanks!
:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将数据放入磁盘文件系统或数据库服务器上的文件中即可访问。
更新:根据更新和评论,功能需求似乎可以归结为让同一服务器上的Web应用程序共享相同的
HttpSession
(包括其所有属性) 。在这种情况下,您需要设置
元素设置为true
。Just put the data in a file on the disk file system or a database server which both have access to.
Update: as per the update and the comments, the functional requirement seems to boil down to let the webapps on the same server share the same
HttpSession
(including all of its attributes). In that case, you need to set theemptySessionPath
attribute of the<Connector>
element in Tomcat's/conf/server.xml
totrue
.您可以查看 crossContext 属性,以允许您通过上下文对象共享数据。以前的 Stackoverflow:
什么是Tomcat 中的 crossContext 属性有什么作用?它是否启用会话共享?
You could look at the crossContext attribute to allow you to share data via the context object. Previous Stackoverflow here:
What does the crossContext attribute do in Tomcat? Does it enable session sharing?