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.
java 静态变量是否在所有会话中使用相同的 webapp 共享,或者每个会话是否都有自己的静态变量版本?
换句话说,Tomcat 是为每个会话创建一组新的类,还是为整个 Web 应用程序创建一组?
TomcatClassLoader为每个 Web 应用程序创建一个,即战争文件或上下文。因此,每个ClassWeb 应用程序都会加载一次。因此,静态变量在多个会话和请求之间共享。
ClassLoader
Class
参考:
静态变量在会话之间共享。小心使用静态变量。