20

Java Mission Control(JMC) was announced to be handed over from Oracle to the open source community from JDK 11 onwards. However JMC is not bundled with the OpenJDK11 releases.

I read that JMC will be provided as separate download here, but there are no builds to download. Also Oracle no longer provides a download on their page about JMC. And I can no longer find it in the Oracle JDK.

The source is mirrored on GitHub but there are also no build releases to download.

Where can I download the most recent open source licensed version of Java Mission Control?

Simulant
  • 19,190
  • 8
  • 63
  • 98

1 Answers1

29

JMC 7 has been released by Oracle - http://jdk.java.net/jmc

There are also other distributions:

If you don't care about JMC working with the latest version of Java Flight Recorder, you can also use a JMC version included in JDK8, 9 or 10.

If you want to use the extra plugins for JMC, you need to use the Oracle release or the AdoptOpenJDK builds, or build yourself.

Klara
  • 2,935
  • 22
  • 19
  • What is an updatesite and do I need it? I don't use Eclipse. – Krzysztof Krasoń Nov 21 '19 at 20:54
  • An updatesite contains extra features for JMC (or for any Eclipse application). These features include some extra functionality for visualizing JFX events in the JFR UI, an jconsole plugin for the JMX Console, and some others, see https://github.com/openjdk/jmc/blob/master/application/org.openjdk.jmc.updatesite.rcp/feature.xml – Klara Nov 25 '19 at 08:32
  • 1
    **JMC 7** was released recently and is available [here](https://www.oracle.com/technetwork/java/javaseproducts/downloads/jmc7-downloads-5868868.html) from Oracle and [here](https://jdk.java.net/jmc/) from open JDK – Jawad Dec 17 '19 at 17:27