Difference between revisions of "Tutorial: Profiling Java Programs"
(→JVisualVM) |
(→JVisualVM) |
||
Line 14: | Line 14: | ||
<center><videoflash>dqiwyD5LSz8</videoflash></center> | <center><videoflash>dqiwyD5LSz8</videoflash></center> | ||
<br /> | <br /> | ||
− | = | + | =VisualVM= |
− | * | + | * VisualVM 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. |
+ | * The documentation for VisualVM is available [http://visualvm.java.net/docindex.html here]. | ||
<onlysmith> | <onlysmith> | ||
* The project, as a tar-zipped archive is available [http://cs.smith.edu/dftwiki/images/352_PackingVisualVMTutorial.tgz here]. | * The project, as a tar-zipped archive is available [http://cs.smith.edu/dftwiki/images/352_PackingVisualVMTutorial.tgz here]. | ||
</onlysmith> | </onlysmith> | ||
+ | =The Packing Application= | ||
+ | * The packing application we are going to use for this tutorial is a Processing application. The YouTube movie above illustrates how it proceeds at packing randomly sized rectangles into a larger rectangle. | ||
+ | * Setup the packing application either as an Eclipse project, or using the Processing IDE. If you are using Eclipse, do not forget to include the '''core.jar''' as an external library in your '''Build Path'''. | ||
<br /> | <br /> | ||
<br /> | <br /> |
Revision as of 15:14, 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
VisualVM
- VisualVM can be downloaded from visualvm.java.net. Once you have downloaded and installed it, you should be ready for running the application.
- The documentation for VisualVM is available here.
The Packing Application
- The packing application we are going to use for this tutorial is a Processing application. The YouTube movie above illustrates how it proceeds at packing randomly sized rectangles into a larger rectangle.
- Setup the packing application either as an Eclipse project, or using the Processing IDE. If you are using Eclipse, do not forget to include the core.jar as an external library in your Build Path.