Difference between revisions of "Tutorial: Profiling Java Programs"
(Created page with "--~~~~ ---- <bluebox> This tutorial is intended to give a brief overview of '''JVisualVM''', the profiler for Java. We use this profiler with Eclipse and use a 2D-packing ap...") |
|||
Line 2: | Line 2: | ||
---- | ---- | ||
<bluebox> | <bluebox> | ||
− | This tutorial is intended to give a brief overview of '''JVisualVM''', the profiler for Java. We use this profiler with Eclipse and use a 2D-packing application as our target application. Our goal is to figure out where the program is spending most of its time. The environment used to create this tutorial is OS X 10.7.5 | + | This tutorial is intended to give a brief overview of '''JVisualVM''', the profiler for Java. We use this profiler with Eclipse and use a 2D-packing application as our target application. Our goal is to figure out where the program is spending most of its time. The environment used to create this tutorial is VisualVM 1.3.6 running on OS X 10.7.5, and the hardware is a 2.8 GHz dual quad-core MacPro. |
</bluebox> | </bluebox> | ||
Line 17: | Line 17: | ||
* JVisualVM can be downloaded from [http://visualvm.java.net/download.html visualvm.java.net]. Once you have downloaded and installed it, you should be ready for running the application. | * JVisualVM can be downloaded from [http://visualvm.java.net/download.html visualvm.java.net]. Once you have downloaded and installed it, you should be ready for running the application. | ||
− | * | + | <onlysmith> |
+ | * The project, as a tar-zipped archive is available [[Media:352PackingV2TutorialVisualVM.tgz| here]]. | ||
+ | </onlysmith> | ||
+ | |||
<br /> | <br /> | ||
<br /> | <br /> |
Revision as of 15:08, 30 September 2013
--D. Thiebaut (talk) 15:01, 30 September 2013 (EDT)
This tutorial is intended to give a brief overview of JVisualVM, the profiler for Java. We use this profiler with Eclipse and use a 2D-packing application as our target application. Our goal is to figure out where the program is spending most of its time. The environment used to create this tutorial is VisualVM 1.3.6 running on OS X 10.7.5, and the hardware is a 2.8 GHz dual quad-core MacPro.
Contents
JVisualVM
- JVisualVM can be downloaded from visualvm.java.net. Once you have downloaded and installed it, you should be ready for running the application.