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.
网友评论