Java thoughts and recommendations
Last updated
Last updated
JDK, SDK, JRE, 11, 17, 23, ... Java confuses me because my impression is: patchwork.
Groovy Scripts are pre-compiled into byte-code to run on the Java Virtual Machine (JVM).
Groovy is not interpreted during run-time. It is pre-compiled before it runs, and the resulting byte-code is executed on a JVM.
The Groovy compiler groovc
is part of the Groovy package.
Groovy needs a JVM as its execution platform.
When the script runs on the Atom, the Atom's JVM runs the script.
When the script runs a the local machine, the determines the JVM.