Tomcat:如何在两个应用程序之间共享数据?

发布于 2024-10-12 14:28:26 字数 135 浏览 2 评论 0原文

有没有办法使用 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 技术交流群。

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

发布评论

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

评论(2

梦罢 2024-10-19 14:28:27

只需将数据放入磁盘文件系统或数据库服务器上的文件中即可访问。


更新:根据更新和评论,功能需求似乎可以归结为让同一服务器上的Web应用程序共享相同的HttpSession(包括其所有属性) 。在这种情况下,您需要设置 元素设置为 true

<Connector emptySessionPath="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 the emptySessionPath attribute of the <Connector> element in Tomcat's /conf/server.xml to true.

<Connector emptySessionPath="true">
看海 2024-10-19 14:28:27

您可以查看 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?

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