Videos
Hi - slight complicated situation. I’m learning Java from Princeton’s intro to CS and unfortunately I can’t use the IntelliJ which they advised- which means I can’t use their software and libraries.
Can someone reccomend a compiler which I can easily have input software and have libraires? Not too familiar with how to implement libraires either
The JIT compiler runs as part as the JVM - it's not something you download and run separately.
In the early days of Java, you used to be able to run a JIT as a plugin - but these days there's no need. Any mainstream, modern desktop Java environment will include a JIT.
Most of the JVMs have a JIT built in. Download any of them.
My guess is you are looking for a java to native .exe compiler in the mistaken belief that this will yield a significant performance difference. For Java this is not the case for most real applications and just makes deploying them harder.