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.
什么时候static变量对会话管理很方便servlet?
static
servlet
我一直在寻找这个答案,但我发现的大多数答案主要描述了何时以及为什么不使用static变量
所以我想知道在什么情况下使用static变量更可取或不是一个坏主意。
通常,除非您使用单例模式,否则您永远不应该将静态变量用于会话管理,因为您拥有希望基于会话而不是在会话内部访问的对象。例如,在进行会话复制时可能会出现这种情况。然而,这些都是极端情况,除非你有充分的理由,否则你应该远离它们。