1.JVM 的组成
- 类加载器(ClassLoader)
- 运行时数据区(Runtime Data Area)(堆、栈)
- 执行引擎(Execution Engine)c++/C
- 本地库接口(Native Interface)
2. jvm 的运行参数
2.1 三种参数类型
jvm 的参数类型分为三类,分别是:
- 标准参数
-help
-version
- - X 参数(非标准参数)
-Xint
-Xcomp
- -XX 参数(非 stable 参数)
-XX:newSize
-XX:+UseSerialGC
2.2 标准参数
jvm 的标准参数,一般都是很稳定的,在未来的 JVM 版本中不会改变,可以使用 java -help
检索出所有的标准参数。
[liuyh@VMcentos jdk1.8.0_231]$ java -help
Usage: java [-options] class [args...]
(to execute a class)
or java [-options] -jar jarfile [args...]
(to execute a jar file)
where options include:
-d32 use a 32-bit data model if available
-d64 use a 64-bit data model if available
-server to select the "server" VM
The default VM is server.
-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
A : separated list of directories, JAR archives,
and ZIP archives to search for class files.
-D<name>=<value>
set a system property
-verbose:[class|gc|jni]
enable verbose output
-version print product version and exit
-version:<value>
Warning: this feature is deprecated and will be removed
in a future release.
require the specified version to run
-showversion print product version and continue
-jre-restrict-search | -no-jre-restrict-search
Warning: this feature is deprecated and will be removed
in a future release.
include/exclude user private JREs in the version search
-? -help print this help message
-X print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
enable assertions with specified granularity
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
disable assertions with specified granularity
-esa | -enablesystemassertions
enable system assertions
-dsa | -disablesystemassertions
disable system assertions
-agentlib:<libname>[=<options>]
load native agent library <libname>, e.g. -agentlib:hprof
see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
load Java programming language agent, see java.lang.instrument
-splash:<imagepath>
show splash screen with specified image
See http://www.oracle.com/technetwork/java/javase/documentation/index.html for more details.
2.2.1 -d32 和 -d64
指定程序是运行在 32 位还是 64 位环境。java -version
命令可以查看到默认的运行环境(64-Bit):
[liuyh@VMcentos jdk1.8.0_231]$ java -version
java version "1.8.0_231"
Java(TM) SE Runtime Environment (build 1.8.0_231-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.231-b11, mixed mode)
2.2.2 -client 和 -server
可以通过 -server 或 -client 设置 jvm 的运行参数。java -version
命令可以查看到默认的运行环境(Server VM):
[liuyh@VMcentos jdk1.8.0_231]$ java -version
java version "1.8.0_231"
Java(TM) SE Runtime Environment (build 1.8.0_231-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.231-b11, mixed mode)
- 它们的区别是 Server VM 的初始堆空间会大一些,默认使用的是并行垃圾回收器,启动慢运行快。
- Client VM 相对来讲会保守一些,初始堆空间会小一些,使用串行的垃圾回收器,它的目标是为了让 JVM 的启动速度更快,但运行速度会比 Serverm 模式慢些。
- JVM 在启动的时候会根据硬件和操作系统自动选择使用 Server 还是 Client 类型的 JVM。
2.2.3 - D 设置系统属性参数
public class JVMTest {public static void main(String[] args) {String test = System.getProperty("test");
if (test == null) {System.out.println("系统属性 test 为空");
} else {System.out.println("系统属性 test="+test);
}
}
}
启动参数 VM option 增加-Dtest=20200406
, 运行后结果为
系统属性 test= 20200406
2.3 非标准参数
jvm 的 - X 参数是非标准参数,在不同版本的 jvm 中,参数可能会有所不同,可以通过 java –
X 查看非标准参数。
[liuyh@VMcentos jdk1.8.0_231]$ java -X
-Xmixed mixed mode execution (default)
-Xint interpreted mode execution only
-Xbootclasspath:<directories and zip/jar files separated by :>
set search path for bootstrap classes and resources
-Xbootclasspath/a:<directories and zip/jar files separated by :>
append to end of bootstrap class path
-Xbootclasspath/p:<directories and zip/jar files separated by :>
prepend in front of bootstrap class path
-Xdiag show additional diagnostic messages
-Xnoclassgc disable class garbage collection
-Xincgc enable incremental garbage collection
-Xloggc:<file> log GC status to a file with time stamps
-Xbatch disable background compilation
-Xms<size> set initial Java heap size
-Xmx<size> set maximum Java heap size
-Xss<size> set java thread stack size
-Xprof output cpu profiling data
-Xfuture enable strictest checks, anticipating future default
-Xrs reduce use of OS signals by Java/VM (see documentation)
-Xcheck:jni perform additional checks for JNI functions
-Xshare:off do not attempt to use shared class data
-Xshare:auto use shared class data if possible (default)
-Xshare:on require using shared class data, otherwise fail.
-XshowSettings show all settings and continue
-XshowSettings:all
show all settings and continue
-XshowSettings:vm show all vm related settings and continue
-XshowSettings:properties
show all property settings and continue
-XshowSettings:locale
show all locale related settings and continue
The -X options are non-standard and subject to change without notice.
2.3.1 -Xint、-Xcomp、-Xmixed
- 在解释模式 (interpreted mode) 下,-Xint 标记会强制 JVM 执行所有的字节码,当然这会降低运行速度,通常低 10 倍或更多。
- -Xcomp 纯编译模式(如果方法无法编译,则回退到解释模式执行无法编译的方法)
- -Xmixed 是混合模式,将解释模式与编译模式进行混合使用,由 jvm 自己决定,这是 jvm 默认的模式,也是推荐使用的模式。
2.3.2 -Xms 与 -Xmx 参数
-Xms 与 -Xmx 分别是设置 jvm 的堆内存的初始大小和最大大小。
-Xmx2048m:等价于 -XX:MaxHeapSize,设置 JVM 最大堆内存为 2048M。
-Xms512m:等价于 -XX:InitialHeapSize,设置 JVM 初始堆内存为 1024M。
[liuyh@VMcentos jvm]$ java -Xms1024m -Xmx2048m JVMTest
系统属性 test 为空
2.4 非 Stable 参数(-XX)
这些参数可以被松散的聚合成三类:
- 行为参数(Behavioral Options):用于改变 jvm 的一些基础行为;
- 性能调优(Performance Tuning):用于 jvm 的性能调优;
- 调试参数(Debugging Options):一般用于打开跟踪、打印、输出等 jvm 参数,用于显示 jvm 更加详细的信息。
-XX 参数的使用有 2 种方式,一种是 boolean 类型,一种是非 boolean 类型:
- boolean 类型
格式:-XX:[±]
如:-XX:+DisableExplicitGC 表示禁用手动调用 gc 操作,也就是说调用 System.gc()无效
- 非 boolean 类型
格式:-XX:
如:-XX:NewRatio=1 表示新生代和老年代的比值
2.5 查看 jvm 的运行参数
2.5.1 运行 java 命令时打印参数
使用 java -XX:+PrintFlagsFinal -version 打印运行参数
结果中参数有 boolean 类型和数字类型,值的操作符是 = 或:=,分别代
表默认值和被修改的值。
2.5.2 查看正在运行的 jvm 参数
- 使用 jps - l 查看 java 进程
- 然后查看某一参数的值,用法:jinfo ‐flag < 参数名 > < 进程 id>
[liuyh@VMcentos jvm]$ jps -l
6882 sun.tools.jps.Jps
1612 /home/liuyh/apache-activemq-5.15.11//bin/activemq.jar
[liuyh@VMcentos jvm]$ jinfo -flag MaxHeapSize 1612
-XX:MaxHeapSize=1073741824