I watched several online presentations that briefly mentioned standalone applications in Java 9, but I have a question that I would like to clarify.
Thanks to the new modular system, you are now allowed to include only the minimum amount of code needed to run your application. However, does the system that wants to run the application require a JRE, or is it something that can be included in the base module in the program?
I suspect the latter, since the page ( here ) to download the latest version of Java still displays version 8_151.
TL; DR - Using Java 9, is it possible to create a standalone executable file that can run on a system without JRE / Java installed?
java java-9 self-contained java-module
Jacob G.
source share