OpenJDK/Java 11 Issue

techknight

Well-Known Member
Licensed User
Longtime User
I noticed the new JDK 11 has no JRE 11 download. just the JDK.

Well I am running Windows 10 X64 on my laptop and it cannot find the runtime environment after installing JDK 11.

any thoughts on how to fix this? Google isnt coming up with anything relevent to JDK 11 on this issue so it must be my search terms, I dunno.

Thoughts?
 

stevel05

Expert
Licensed User
Longtime User
There is no installed JRE for Java 11, it is expected that distributed apps have their own JRE included. This is done using jMods and building a package. Luckily for us, Erel has provided the B4jPackager which means that we don't have to worry about it, unless you have a specific need to not distribute an .exe file.

I only looked at it briefly, but I think if you built it yourself the end result would be an executable script that contains the app and enough of the 'JRE' to run it.
 
Top