假设您实际上不需要持久会话,您可以通过禁用 Tomcat 中的持久会话来解决此问题。
您可以通过将以下内容添加到应用程序的 context.xml 文件(或将其添加到服务器的 context.xml)来做到这一点。
<Manager pathname="" />
例如,这是在 Spring Tools Suite 中为服务器自动创建的 context.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
-->
<!-- Uncomment this to enable Comet connection tacking (provides events
on session expiration as well as webapp lifecycle) -->
<!--
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
-->
</Context>