Friends of OpenJDK Today

JDKMon: Your Friendly JDK Distribution Updater

July 06, 2021

Author(s)

  • Avatar photo
    Gerrit Grunwald

    JUG Leader, Java Champion, Speaker, Author, ❤️ Java(FX) and coding in general

I don't know if you have the same problem but I have around 8 OpenJDK distributions installed on my machine and I always have the problem of keeping them up to date. I know there is sdkman which is awesome but I somehow never got used to it.

Meaning to say I download the OpenJDK distributions manually and install them on my machine. So the main problem is that there so many different distributions out there and all of them have a different way on how to get the latest version. To solve exactly this problem we at foojay.io created the DiscoAPI which keeps track on (hopefully) all available OpenJDK distributions available. Well and because we like to eat our own dogfood I've created a little tool that helps me keeping my installed OpenJDK distributions up to date... JDKMon.

It's just a little tool written in Java(FX) which makes use of FXTrayIcon, a nice little library by Dustin Redmond that makes it possible to run a JavaFX application in the system tray of your operating system. Well, that means it works on Windows and MacOS but unfortunately not on all Linux distributions. But no worries, JDKMon will also run on Linux and it will stay in the dock instead.

In principle, JDKMon is just a little tool that scans your computer for installed OpenJDK distributions and uses the Disco API to check whether there are updates available for one of the distributions. In case it finds updates it will present you buttons for each package it finds. When you click on one of these buttons (e.g. tar.gz, zip, pkg etc.) you have to select a folder where the selected package should be downloaded to. The download process will be visualized by a little progressbar at the bottom of the window. After the download is done, you have to install the downloaded package manually.

Because JDKMon won't scan your whole machine trying to find installed JDK's you have to point it to a folder that it should check. On MacOS for example usually the JDK's will be installed in the following folder /Volumes/Macintosh HD/Library/Java/JavaVirtualMachines, where on Windows it might be C:\Program Files\Javaand on Linux it's probably /usr/lib/jvm. On the JDKMon menu you will find an entry called SearchPath, when selecting this entry you can select a folder that JDKMon will then check for installed JDK distributions. You just have to select that folder ones because it will be stored in a properties file.

If you would like to trigger a rescan for updates you can select the entry Rescanbut JDKMon will also run a rescan every 3 hours. In case it will find updates for one of the installed distributions it will show a popup window on the screen that disappears after a couple of seconds showing the available updates.

The JDKMon main window comes in different flavors, there is a native looking version for MacOS and Windows. On Linux the window will look like on MacOS.

MacOS and Linux:
JDKMon MacOS and Linux

Windows:
JDKMon Windows

I've tried to make the windows look as native as possible in the given time. 🙂

As you can see on the screenshots the JDKMon window will show you the installed distributions with their version numbers. If a distributions comes bundled with JavaFX, you will find (FX)behind the distribution name. In case there is an update available you will see an arrow, followed by the latest available version for this distribution. After the version you will find a list of buttons that have different colors. Each of these buttons has a tooltip that shows which package it points to. When you click on one of those buttons you have to select a folder where to download it to and then the download will start.

There are distributions that do not support direct downloads of their packages (e.g. Oracle and RedHat). In this case the buttons will be gray and cannot be clicked. Meaning to say you have to check the website of the distribution and download it manually. But at least you get the information that a new package is available.

Currently the following distributions are supported by the DiscoAPI and so by JDKMon:

  • AdoptOpenJDK
  • AdoptOpenJDK J9
  • Corretto
  • Dragonwell
  • GraalVM CE8
  • GraalVM CE11
  • GraalVM CE16
  • JetBrains
  • Liberica
  • Liberica Native
  • Mandrel
  • Microsoft
  • OJDK Build
  • OpenLogic
  • Oracle
  • Oracle OpenJDK,
  • RedHat
  • SAP Machine,
  • Temurin (no packages yet)
  • Trava
  • Zulu
  • Zulu Prime

To download JDKMon you might want to check the github releases page of the project. There are installers for Windows and Mac and also jar files for all platforms. To run the jar file you need to have JDK16 or later installed, please start it as follows:

java -jar --enable-preview JDKMon-16.0.jar

If you need help or encounter problems, please file issues over at GitHub.

That's it... so keep coding!

Topics:

Author(s)

  • Avatar photo
    Gerrit Grunwald

    JUG Leader, Java Champion, Speaker, Author, ❤️ Java(FX) and coding in general

Comments (9)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Max Rydahl Andersen

nice.~

you can run it directly using the osx specific jar:

JAVA_TOOL_OPTIONS=--enable-preview jbang --java 16 https://github.com/HanSolo/JDKMon/releases/download/3.6/JDKMon-macos-16.0.jar

p.s.for some reason it does not detect adoptopenjdk installations in .jbang nor any sdk I have in .sdkman.

Avatar photo
Gerrit Grunwald

I assume you set the search path to either .jbang or .sdkman folder? At the moment it only checks one folder (the search path that you have to define) but I think it would make sense to have the ability to select multiple folders to search for jdk’s

Avatar photo
Gerrit Grunwald

With release v3.7 of JDKMon now supports multiple folders to search for installed JDK distributions.

A new tool to detect and update JDKs - R4 News

[…] Grunwald, senior engineer at Azul, a introduced a new tool, JDKMy, which monitors and updates installed JDKs as an alternative to existing package […]

A New Tool to Detect and Update JDKs – aut-next-5

[…] Grunwald, principal engineer at Azul, has introduced a new tool, JDKMon, that monitors and updates installed JDKs as an alternative to existing package […]

Introducing JDKMon: A New Tool to Detect and Update JDKs

[…] Grunwald, principal engineer at Azul, has introduced a new tool, JDKMon, that monitors and updates installed JDKs as an alternative to existing package […]

King Jeffrey

Hi there. Can a single instance of JDKMon running on a server be used on an industrial scale – e.g. for a corporate wanting to know which distributions are running on all the machines on the network?

Avatar photo
Gerrit Grunwald

Not in it’s current state. It’s made to run in the background on one machine and check given locations for installed JDK’s and if there are updates available for them. To run it as a network wide scanner it would need a couple of modifications, so in principle parts of it could be used to realize the thing you asked for but like mentioned before not in it’s current state.

Introducing JDKMon: a New Tool to Detect and Update JDKs – InfoQ.com – 7th Information Technologies

[…] Aug 11, 2021 2 min read by Johan Janssen Gerrit Grunwald, principal engineer at Azul, has introduced a new tool, JDKMon, that monitors and updates installed JDKs as an alternative to existing package […]

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard