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.
是否有任何工具能够从 Java8 热点 vm 获取 Metaspace 转储?
您似乎遇到了类加载泄漏。 采用
jmap -clstats PID
jcmd PID GC.class_stats
-XX:+UnlockDiagnosticVMOptions
堆转储也会有所帮助,因为元空间中的每个类在堆中都有对应的java.lang.Class实例。
java.lang.Class