聊聊openjdk的jvm.cfg文件

25次阅读

共计 1873 个字符,预计需要花费 5 分钟才能阅读完成。


本文主要研究一下 openjdk 的 jvm.cfg 文件
jdk8
/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/jvm.cfg
# 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 则被忽略
jdk9-12
/Library/Java/JavaVirtualMachines/jdk-12.jdk/Contents/Home/lib/jvm.cfg
-server KNOWN
-client IGNORE
对于 jdk9、10、11、12 该文件在 JAVA_HOME/lib/ 目录下
设置 -client 为 default
对于 jdk12,把 -client 移到前面
-client IGNORE
-server KNOWN
执行 java -version 显示如下
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 则报错
禁用 client
-server KNOWN
-client ERROR
执行 java -client -version 显示如下
java -client -version
Error: client VM not supported
可以看到设置 -client 为 ERROR,则报错显示 not supported
删除 jvm.cfg
java -version
Error: could not open `/Library/Java/JavaVirtualMachines/jdk-12.jdk/Contents/Home/lib/jvm.cfg’
可以看到删除 jvm.cfg,执行 java -version 则会报错
小结

jvm.cfg 文件用于配置 java、javac 能够使用的 option,其中配置顺序非常重要,第一个为 default JVM(不管其是 KNOWN 还是 IGNORE;IGNORE 仅仅是禁用 VM option;ERROR 则报错显示 not supported)
对于 jdk8 该文件在 JAVA_HOME/jre/lib/ 目录下;对于 jdk9、10、11、12 该文件在 JAVA_HOME/lib/ 目录下;删除 jvm.cfg 文件的话,则执行 java 命令会报错
可以看到对于 mac 来说其 open jdk 的 jvm.cfg 中 -server 位于 -client 前面,-server 是 default JVM,而 -client 则被忽略

doc

The Java HotSpot VM Architecture Overview
What is the purpose of jvm.cfg file in relation to Java?
Running the JVM in server mode
Server-Class Machine Detection
Change Default Java VM to Client
OpenJDK default options to always use the server VM

正文完
 0