本文主要研究一下openjdk的jvm.cfg文件html
/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/jvm.cfgjava
# List of JVMs that can be used as an option to java, javac, etc. # Order is important -- first in this list is the default JVM. # NOTE that this both this file and its format are UNSUPPORTED and # WILL GO AWAY in a future release. # # You may also select a JVM in an arbitrary location with the # "-XXaltjvm=<jvm_dir>" option, but that too is unsupported # and may not be available in a future release. # -server KNOWN -client IGNORE
對於jdk8該文件在JAVA_HOME/jre/lib/目錄下;其註釋顯示該配置文件用於配置java、javac可以使用的option,其中配置順序很是重要,第一個爲default JVM(
無論其是KNOWN仍是IGNORE;IGNORE僅僅是禁用VM option;ERROR則報錯顯示not supported
);能夠看到這裏-server是默認的,而-client則被忽略
/Library/Java/JavaVirtualMachines/jdk-12.jdk/Contents/Home/lib/jvm.cfgubuntu
-server KNOWN -client IGNORE
對於jdk九、十、十一、12該文件在JAVA_HOME/lib/目錄下
對於jdk12,把-client移到前面oracle
-client IGNORE -server KNOWN
執行java -version顯示以下jvm
java -version Error: missing `client' JVM at `/Library/Java/JavaVirtualMachines/jdk-12.jdk/Contents/Home/lib/client/libjvm.dylib'. Please install or use the JRE or JDK that contains these missing components.
能夠看到對於mac的jdk12,把client設置爲default則報錯
-server KNOWN -client ERROR
執行java -client -version顯示以下ide
java -client -version Error: client VM not supported
能夠看到設置-client爲ERROR,則報錯顯示not supported
java -version Error: could not open `/Library/Java/JavaVirtualMachines/jdk-12.jdk/Contents/Home/lib/jvm.cfg'
能夠看到刪除jvm.cfg,執行java -version則會報錯
無論其是KNOWN仍是IGNORE;IGNORE僅僅是禁用VM option;ERROR則報錯顯示not supported
)