Hello OpenJ9 on Windows, I Didn’t Expect You so Soon!
Move over HotSpot, there's a new JVM on the block. See how to get OpenJ9 running on Windows and how it can help with your Java projects.
Join the DZone community and get the full member experience.
Join For FreeFaster startup time, lower memory footprint, and higher application throughput only by replacing the Java Virtual Machine? That sounds too good to be true. So far, there has been no real alternative to Oracle’s Java HotSpot VM on Windows. With Eclipse OpenJ9, which emerged from open-sourcing IBM’s J9 VM, there is now the alternative that promises exactly this.
At the end of January, the first OpenJDK 9 with Eclipse OpenJ9 nightly builds for Windows were published, but they were not very stable at that time. This week, I tested the nightly builds again to run the Eclipse IDE and I was pleasantly surprised: OpenJ9 ran without crashing. Here are my results: the start time of the Eclipse Oxygen.2 Java IDE improves with OpenJ9 from 20 to 17 seconds, with some tuning (see below) even to 12 seconds compared to the Java 9 JDK with Oracle’s HotSpot VM on my more than six-year-old laptop. Also, the Windows Task Manager shows less memory used by the Eclipse IDE and tasks like compiling a large project are a bit faster with OpenJ9.
To start the Eclipse IDE with OpenJ9, in eclipse.ini
add the following two lines above -vmargs
:
-vm
C:\path\to\jdk-9+181\bin\javaw.exe
Embedding the JDK into an Eclipse installation directory as a jre
subdirectory does not yet work, but as long as you do not start the Eclipse IDE from the command line from another directory, you can use -vm
with jre\bin\javaw.exe
. To further improve the startup time, add the following two lines below -vmargs
:
-Xtune:virtualized
-Xshareclasses:cacheDir=C:\path\to\shareclasses
The cloning of a GitHub repository fails due to missing certificate authority (CA) certificates. You can fix this OpenJDK 9 issue by replacing the lib\security
directory (which contains the cacerts
file) with the same directory of an OpenJDK 10 early access build.
In the Eclipse IDE that is running on OpenJDK the standard basic text font defaults (for reasons I don’t know) to Courier New 10 instead of Consolas 10. You can change this in Window > Preferences: General > Appearance > Colors and Fonts by selecting Basic > Text Font and pressing Edit… (if you like, you can also use Source Code Pro 9 like the Clean Sheet theme does).
I have not noticed so far any further differences between the Eclipse IDE running on Oracle’s JDK 9 and the Eclipse IDE running on the current OpenJDK 9 with OpenJ9 nightly build. Debugging and hot code replace works as expected.
Many thanks to the OpenJ9 team! I look forward to the final release. It’s great to have two good open source Java virtual machines for Windows. Who knows, but with only one of the two, neither of the two might be open source today.
PS: If the Eclipse IDE still starts too slowly for you, have a look at a developer build of the upcoming Eclipse Photon IDE.
Published at DZone with permission of Holger Voormann, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments