A better solution to Java SE 11 removing JNLP

Another solution to the JNLP deprecation, with one less Windows server, thanks to the community.
135 readers like this.
Coffee beans

Pixabay. CC0.

Recently, I wrote about how we solved the problem of Java 11 removing the Java Network Launching Protocol (JNLP), which was how an organization I work with distributed a critical business app. Because I maintain the former JNLP application on Linux but deploy to Windows desktops, as far as I could tell, that meant I had to carry out a packaging step, which involves creating a custom Java 11 runtime environment on an intermediate Windows computer.

The process looked like this:

Original JNLP build process for Java SE 11

The intermediate machine requirement was a pain; it meant I needed to carry two machines (not easy to manage when I'm on the road), or I needed to install a Windows virtual machine on my Linux laptop (not something I intend to do), or I needed remote access to a Windows desktop (the solution we eventually chose).

Alan Bateman over at Oracle very kindly wrote to me to share a fourth alternative: Put the Windows version of OpenJDK 11 on the Linux development platform and build the custom Java 11 runtime from that. According to Alan, this has been possible since JDK 9; he notes that "there are a few limitations and the versions [between the Linux utilities and the Windows OpenJDK] need to match."

Since this would eliminate an onerous step outlined above, including the need to have remote access to the Windows desktop, I had to investigate further. To my surprise and delight, I was not one of those "few limitations" Alan mentioned—the approach works just fine for me. However, I did discover that the version of OpenJDK 11 in my Linux distro's repositories was not "close enough" to the Windows OpenJDK 11 that I downloaded, so I also needed to obtain the same version of the Linux OpenJDK 11 and use its tools to create the Java 11 runtime.

The new solution

Here's my new recipe in detail:

  1. Create a project folder somewhere handy.
    • I created mine in /home/me/src/MyOpenJDK11Project (sorta) and set a Bash environment variable called MYPROJ_HOME (sorta).
  2. Get the matching Windows and Linux OpenJDK 11 packages from AdoptOpenJDK.
  3. Install both of them somewhere handy (the Windows version is a .zip; the Linux, a tarball).
    • I installed mine in $MYPROJ_HOME/windows and $MYPROJ_HOME/linux, respectively.
  4. Write a Bash script (or a makefile, or an Ant package step, or…) to do the packaging.

The key elements of my Bash script solution, which must run inside the dist folder created by NetBeans, are:

export MYPROJ_HOME=/home/me/src/MyOpenJDK11Project
export W64_JAVA_HOME=$MYPROJ_HOME/windows/jdk-11.0.2+9
export JAVA_HOME=$MYPROJ_HOME/linux/jdk-11.0.2+9
export PATH=$JAVA_HOME/bin:$PATH
export DEPS=`jdeps --print-module-deps MyApplication.jar lib/*`
jlink --module-path $W64_JAVA_HOME/jmods --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules $DEPS --output java-runtime

This leaves the custom Java 11 runtime in the dist folder, in a subfolder called java-runtime. To that folder, my Bash script adds the various Windows .cmd files for installing and running the application, which are of course also kept in the MYPROJ_HOME folder. Finally, my Bash script zips up the completed dist folder and uses scp to put it on the web server.

The result

The simpler way to build Java SE 11 without JNLP

How well does it work? First and most importantly, the users don't see any difference. From my perspective, this solution is a huge win, simplifying the packaging process considerably and eliminating the need for an intermediate Windows machine for the packaging process. And even though I miss the coolness of JNLP, I actually prefer this solution since it keeps me in control of the Java runtime as well as the application itself, which is a win for all of us—users, sysadmins, and me.

With that, I'll repeat my thanks to Alan Bateman for sharing this excellent suggestion.

Tags
Chris Hermansen portrait Temuco Chile
Seldom without a computer of some sort since graduating from the University of British Columbia in 1978, I have been a full-time Linux user since 2005, a full-time Solaris and SunOS user from 1986 through 2005, and UNIX System V user before that.

2 Comments

Amazing article

Thank you for the kind note, James Brown!

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.