Sam Howard Sam is a developer at IDRsolutions who specialises in font rendering and conversion. He's also enjoyed working with SVG, Java 3D, Java FX and Swing.

Are you a Java Developer working with PDF files?

Find out why you should be using JPedal

Setting up VisualVM in under 5 minutes

1 min read

It’s hard to put a label on VisualVM – it has a profiler, but it’s more than that. It also has tools for tracking threads, interacting with garbage collection, and monitoring memory and CPU usage. We use it to help development of our products BuildVu, FormVu, JPedal, and JDeli.

What you might not realise is that you almost certainly have VisualVM installed – it’s been included as a standard part of the JDK since Java 1.6 update 7. Further to this, it’s actually an evolution of Netbeans’s profiler, which was first introduced in 2004.

All of the major IDEs used by Java developers – with the exception of Netbeans due to its integrated profiler – can quickly be set up to use VisualVM. So here’s how to do it for IDEA and Eclipse.

IntelliJ IDEA

To set up VisualVM in Idea, first download the VisualVM Launcher jar. Open up the plugins settings page and install it by selecting ‘Install plugin from disk’.

VisualVM Launcher Jar

Relaunch Idea and go to the new VisualVM Launcher settings page. Set the path to your jvisualvm.jar file which should be in your JDK’s bin folder.

JVisualVM Settings

Idea will now have buttons for launching or debugging with VisualVM.

Eclipse

Download the VisualVM launcher for Eclipse and extract it to a location of your choosing. Launch Eclipse and click ‘Help’ -> ‘Install New Software…’.

Click ‘Add..’, fill in a name and then click ‘Local’. Find your VisualVM launcher folder and select it.

If you now return to the Install Software dialog you should see the launcher feature available to install. Select it and hit Next. Follow the instructions on screen and Eclipse will restart.

Navigate to VisualVM Configuration in Preferences where you can set your JDK (make sure it is not the JRE) and then set the executable to the jvisualvm.exe in your JDK’s bin folder.

JDK and VisualVM location

If you now go to Default Launchers in the same location, you can set Run and Debug configurations for your Java Application. Edit one or both to have the preferred launcher as VisualVM.

Launch configuration

Now run your application and you’re good to go!

VisualVM monitoring.

Note: If your application executes and ends extremely quickly, VisualVM might not pick it up in time. If this is the case, you can set a breakpoint in your code and run it in debug mode. This will allow VisualVM to recognise it and you can proceed to run it as normal.



Our software libraries allow you to

Convert PDF to HTML in Java
Convert PDF Forms to HTML5 in Java
Convert PDF Documents to an image in Java
Work with PDF Documents in Java
Read and Write AVIF, HEIC, WEBP and other image formats
Sam Howard Sam is a developer at IDRsolutions who specialises in font rendering and conversion. He's also enjoyed working with SVG, Java 3D, Java FX and Swing.

12 Replies to “Setting up VisualVM in under 5 minutes”

  1. The first step did not work… It is a JetBrains plugin so no download of the jar is necessary nor is the load from disk. Just go to settings and select ‘Install JetBrains Plugin…’ and select VisualVM from list.

    W

  2. I am using Eclipse IDE and getting the following error when I am launching the java application using Visual VM:
    An internal error occurred during: “Launching TestNew”.
    java.lang.NullPointerException

    “TestNew” is the name of the class with main method I am trying to execute.

    please help.

  3. Turned out I didn’t have visualvm on my system, download it.
    Then set the Window=>Preferences=>Run/Debug=>Launching=>VisualVM configuration=> exe path correctly

    Hope this helps someone else 🙂

  4. Same problem here:
    An internal error occurred during: “Launching Test”.
    java.lang.NullPointerException

    Version: Juno Service Release 2
    Build id: 20130225-0426

    Any ideas?

    1. Hey Chad. Are your other run options (Run and Debug) greyed out too? If that’s the case then it could be that either a main method doesn’t exist or run configurations are not set.

      1. I actually *just* figured this one out, but thanks for the prompt response! For some reason the options are only available when I’m selecting my SpringBoot run configuration, but they’re grayed out with the local Tomcat version. Not a big deal, as the issue I’m debugging is repeatable in both. Thanks for making this blog post!

  5. I am trying to use Visualvm with intelj. I installed it from martkeplace. i restarted id. During run time, it is asking for Visualvm executable path. I have searched through jdk bin folder but couldn’t find .exe file for visualvm. Any ideas?

Comments are closed.