NMT 报错 “Native memory tracking i

2021-08-07  本文已影响0人  偷油考拉

Not able to enable Native memory tracking in a spring boot application - Javaer101

解决方案:

-XX:NativeMemoryTracking 必须放到最前面,注意顺序。如下范例:

java -XX:NativeMemoryTracking=summary -Dlogging.config=log4j2.xml -jar application.jar

This is a pecularity of java launcher. -XX:NativeMemoryTracking must be handled both by the launcher and by the JVM in order to take effect. However, the launcher stops processing arguments as soon as it sees a terminal option. -jar is one them.

上一篇 下一篇

猜你喜欢

热点阅读