B4J Question OpenJDK 19 + OpenJFX runtime for windows 10

spiroskaras

Member
Licensed User
Longtime User
hello,
In B4J i configure java enviroment OpenJDK 19 + OpenJFX
is there a way to run jar files that i produce in windows 10-11 with a runtime enviroment (JRE FOR JAVA OpenJDK 19 )
 

Jones Hone

Active Member
Licensed User
Longtime User
OpenJDK 19 is a non-LTS version (released in September 2022). It has now expired and is no longer officially maintained with updates (no security patches available). It is strongly recommended to upgrade to a currently supported LTS version, such as JDK 21 or JDK 17.
 
Upvote 0

Jones Hone

Active Member
Licensed User
Longtime User
This website allows you to download various versions of JDK and JRE, but not version 19.

You can creating a Custom JRE from a JDK using jlink.exe:
jlink is a tool built into the JDK that is specifically designed to generate a custom Java runtime image.
It allows you to create a tailored JRE that contains only the modules required by your application, resulting in a smaller and more efficient runtime environment.
 
Upvote 0
Top