Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在每个服务器上创建 x 个会话后,我有 2 个不同的 tomcat 服务器(不同的机器),当我重新启动两个时,其中一个保留会话而另一个没有,
任何想法为什么?我希望在两个 tomcat 上保持会话
谢谢
禁用会话持久性的最可能方式是正在编辑$CATALINA_BASE/conf/context.xml。如果以下已取消注释,则持久性将被禁用。
$CATALINA_BASE/conf/context.xml
<Manager pathname="" />
请注意,可以将相同的条目添加到 Web 应用程序的 context.xml 文件中,因此您也需要检查它们(如果它们存在)。