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.
我们正在尝试分析 Tomcat 服务器上 Spring MVC 应用程序中每个用户会话的内存消耗。
你不能,至少直接。堆不是按用户会话分区的,因此 GC 日志等将用于整个 JVM。
您可以做的是使用堆转储,然后使用 Eclipse MAT 之类的东西来分析转储并计算每个会话对象的总保留大小。