I installed JDK 9 early access (jdk-9 177) on my macbook pro (macOS Sierra Version 10.12.5) using instructions from here and here.
I was able to install it successfully and then using jenv
, I set my global java versions as java 8. So when I typed java -version
from terminal, I could see java 8 on the terminal.
But strangely, the when I opened "System Preferences" -> "Java", the "Java Control Panel" window showed me java 9 version.
Then after some looking around, from other posts, I found out that the "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" was having java 9 JRE for some reason.
I didn't expected it to change my JRE version to 9 when installing JDK 9. I had to uninstall it and reinstall JRE 8 as some of my applications won't work.
Did anyone else face similar issue when installing jdk 9?