Does Java 9 include Graal?
问题 I'm reading JEP 317. It says that Graal (a new experimental Java-based JIT compiler) will be part of JDK 10, but then it says that is already available in JDK 9. So, what's the point of JEP 317 then? Does Java 9 include Graal or not? 回答1: From one of my memos, on linux-x64 (out-of-the-box) to use Graal on JDK 9, you can enable it using : -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler Source : Tweet from Chris. If you're explicitly willing to make use of the org