您的位置:

jvm 分析工具

一、JVisualVM

JVisualVM 是 Oracle 自带的基于软件开发工具包的可视化工具,它可以检测 Java 虚拟机上运行的应用程序,并提供一个 GUI 应用程序来检查和分析一些信息。

JVisualVM 可以监测 CPU 和堆内存的使用情况,并分析内存泄漏,线程死锁等问题。它还可以分析正在运行的应用程序的线程和 JVM 信息。同时它还提供了 JMX 和 MBeans 的支持,并在面板中提供了信息栏、CPU 使用率栏、内存信息栏等实用功能。

JVisualVM 在指定端口号的情况下与远程主机进行连接。JVisualVM 除了原生的功能外,还支持众多插件,包括 Memory Leak Detector、Threads Inspector、Synchronization Profiler、Profiling故障等。

下面是用 JVisualVM 分析一个 Java 程序的示例:

<%!DOCTYPE html>
<html>
<head>
</head>
 
<body>
 
<%!
public class FibonacciTest {
    private static Map
    fibCache = new HashMap<>();
 
    public static void main(String[] args) {
        Scanner scanner = new Scanner( System.in );
        System.out.print( "Please input the index of fibonacci sequence: ");
        int index = scanner.nextInt();
 
        long startTime = System.currentTimeMillis();
 
        long result = fibonacciCached(index);
        String format = String.format("Fibonacci(%d) = %d", index, result);
        System.out.println(format );
 
        long endTime = System.currentTimeMillis();
        String timeFormat = String.format("程序耗时:%d 毫秒", endTime - startTime);
        System.out.println(timeFormat );
    }

	private static long fibonacciCached(int index) {
        if (index <= 1) {
            return index;
        }
        if (fibCache.containsKey(index)) {
            return fibCache.get(index);
        }
        else {
            long fibonacciValue = fibonacciCached(index - 1) + fibonacciCached(index - 2);
            fibCache.put(index, fibonacciValue);
            return fibonacciValue;
        }
    }
}
%>
 
<a href="http://www.visualvm.com/div/media/screencasts/VisualVM.wmv">下载JVisualVM演示视频</a>
 
</body>
</html>
   

二、Flight Recorder

Flight Recorder 是 Java SE Advanced 和 Java SE Suite 的组件之一,它是一种用于生产线程程监控和管理的工具,它可以在生产环境中为您提供精细的实时监控,包括 CPU 使用率、内存使用率、GC 次数等,并提供详细的性能跟踪和分析。你可以在任何时候启动和停止 Flight Recorder,它可以记录任何数量的数据。

Flight Recorder 运行在 Java 虚拟机内置的 Java Mission Control 里。Java Mission Control 是一套生产管理套件,它包含了除 Flight Recorder 以外的线程程分析工具,例如工具箱工具、线程程分析器、执行器、堆内存浏览器等等。

下面是一个使用 Flight Recorder 分析 Java 应用程序的示例:

<%!DOCTYPE html>
<html>
<head>
</head>
 
<body>
 
<%!
public class FibonacciTest {
    private static Map
    fibCache = new HashMap<>();
 
    public static void main(String[] args) {
        System.setProperty("com.sun.management.jmxremote.port", "9999");
        MBeanServer mbeanServer = ManagementFactory.getPlatformMBeanServer();
 
        long startTime = System.currentTimeMillis();
 
        int index = 70;
        long result = fibonacciCached(index);
 
        long endTime = System.currentTimeMillis();
        System.out.println("fib(" + index + ")=" + result + ",耗时(ms)=" + (endTime - startTime));
 
        try {
            Thread.sleep(3600 * 1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
 
    private static long fibonacciCached(int index) {
        if (index <= 1) {
            return index;
        }
        if (fibCache.containsKey(index)) {
            return fibCache.get(index);
        }
        else {
            long fibonacciValue = fibonacciCached(index - 1) + fibonacciCached(index - 2);
            fibCache.put(index, fibonacciValue);
            return fibonacciValue;
        }
    }
}
%>
 
<a href="http://www.oracle.com/technetwork/java/javaseproducts/flight-recorder-software-1846631.html">了解更多信息</a>
 
</body>
</html>
   

三、Java Profiler

Java Profiler 可以为开发人员提供应用程序的低级执行信息,用于分析复杂的应用程序和系统问题。Java Profiler 包括 CPU 分析器、内存分析器、线程程分析器和执行器分析器。

Java Profiler 可以在应用程序运行期间记录执行信息。这样可以分析 JNI 调用、线程程竞争、对象分配、Java 反射、网络和 I/O 阻塞、GC 等问题。

Java Profiler 还提供自定义目标,您可以通过自定义目标追踪日志,文件,得到执行的详细信息,然后将它们导出到 Excel 工作簿或 HTML 格式的报表中。

下面是 Java Profiler 的一个示例。

<%!DOCTYPE html>
<html>
<head>
</head>
 
<body>
 
<%!
public class FibonacciTest {
    private static Map
    fibCache = new HashMap<>();
 
    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        int index = 40;
        long result = fibonacciCached(index);
        long endTime = System.currentTimeMillis();
        System.out.println("fib(" + index + ")=" + result + ",耗时(ms)=" + (endTime - startTime));
    }
 
    private static long fibonacciCached(int index) {
        if (index <= 1) {
            return index;
        }
        if (fibCache.containsKey(index)) {
            return fibCache.get(index);
        }
        else {
            long fibonacciValue = fibonacciCached(index - 1) + fibonacciCached(index - 2);
            fibCache.put(index, fibonacciValue);
            return fibonacciValue;
        }
    }
}
%>
 
<a href="https://www.yourkit.com/java/profiler/">了解更多信息</a>
 
</body>
</html>
   

四、JProfiler

JProfiler 是一款全功能的基于 Java 的性能分析工具。它支持多种 Java 应用程序和服务器,以及与标准 JMX 客户端和 JMX AI 进行交互。该工具有助于开发人员诊断性能问题,分析性能瓶颈,并优化应用程序。

JProfiler 可以连续执行多种调试和测量选项,包括调用跟踪、热点跟踪、Heap Walker、内存区域等。在运行多个调试选项后,JProfiler 还可以帮助您识别与 J2EE 规范相冲突的问题。该工具的 UI 显示呈层级结构,显示任何可用性能分析选项。

下面是使用 JProfiler 分析 Java 程序的示例:

<%!DOCTYPE html>
<html>
<head>
</head>
 
<body>
 
<%!
public class FibonacciTest {
    private static Map
    fibCache = new HashMap<>();
 
    public static void main(String[] args) throws InterruptedException {
          int index = 50;
          long startTime = System.currentTimeMillis();
          long result = fibonacciCached(index);
          long endTime = System.currentTimeMillis();
 
          System.out.println(String.format("FIB(%d) is %d, took %d ms", index, result, endTime - startTime));
          Thread.sleep(1000000);
      }
 
    private static long fibonacciCached(int index) {
        if (index <= 1) {
            return index;
        }
        if (fibCache.containsKey(index)) {
            return fibCache.get(index);
        }
        else {
            long fibonacciValue = fibonacciCached(index - 1) + fibonacciCached(index - 2);
            fibCache.put(index, fibonacciValue);
            return fibonacciValue;
        }
    }
}
%>
 
<a href="https://www.ej-technologies.com/products/jprofiler/overview.html">了解更多信息</a>
 
</body>
</html>