You can use thejava command to launch a Java application.
Synopsis
Windows: Thejavaw command is identical tojava, except that withjavaw there’s no associated console window. Usejavaw when you don’t want a command prompt window to appear. Thejavaw launcher will, however, display a dialog box with error information if a launch fails.
To launch a class file:
java [options]mainclass [args...]To launch the main class in a JAR file:
java [options] -jarjarfile [args...]To launch the main class in a module:
java [options] -mmodule[/mainclass] [args...]or
java [options] --modulemodule[/mainclass] [args...]To launch a single source-file program:
java [options]source-file [args...][options]Optional: Specifies command-line options separated by spaces. SeeOverview of Java Options for a description of available options.
mainclassSpecifies the name of the class to be launched. Command-line entries followingclassname are the arguments for the main method.
-jarjarfileExecutes a program encapsulated in a JAR file. Thejarfile argument is the name of a JAR file with a manifest that contains a line in the formMain-Class:classname that defines the class with thepublic static void main(String[] args) method that serves as your application's starting point. When you use-jar, the specified JAR file is the source of all user classes, and other class path settings are ignored. If you’re using JAR files, then seejar.
-m or--modulemodule[/mainclass]Executes the main class in a module specified bymainclass if it is given, or, if it is not given, the value in themodule. In other words,mainclass can be used when it is not specified by the module, or to override the value when it is specified.
source-fileOnly used to launch a single source-file program. Specifies the source file that contains the main class when using source-file mode. SeeUsing Source-File Mode to Launch Single-File Source-Code Programs
[args...]Optional: Arguments followingmainclass,source-file,-jarjarfile, and-m or--modulemodule/mainclass are passed as arguments to the main class.
Description
Thejava command starts a Java application. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class'smain() method. The method must be declaredpublic andstatic, it must not return any value, and it must accept aString array as a parameter. The method declaration has the following form:
public static void main(String[] args)In source-file mode, thejava command can launch a class declared in a source file. SeeUsing Source-File Mode to Launch Single-File Source-Code Programs for a description of using the source-file mode.
Note:
You can use theJDK_JAVA_OPTIONS launcher environment variable to prepend its content to the actual command line of thejava launcher. SeeUsing the JDK_JAVA_OPTIONS Launcher Environment Variable.
By default, the first argument that isn’t an option of thejava command is the fully qualified name of the class to be called. If-jar is specified, then its argument is the name of the JAR file containing the class and resource files for the application. The startup class must be indicated by theMain-Class manifest header in its manifest file.
Arguments after the class file name or the JAR file name are passed to themain() method.
Using Source-File Mode to Launch Single-File Source-Code Programs
java launcher in source-file mode. Entering source-file mode is determined by two items on thejava command line:The first item on the command line that is not an option or part of an option. In other words, the item in the command line that would otherwise be the main class name.
The--sourceversion option, if present.
If the class identifies an existing file that has a.java extension, or if the--source option is specified, then source-file mode is selected. The source file is then compiled and run. The--source option can be used to specify the sourceversion orN of the source code. This determines the API that can be used. When you set--sourceN, you can only use the public API that was defined in JDKN.
Note:
The valid values ofN change for each release, with new values added and old values removed. You'll get an error message if you use a value ofN that is no longer supported. Supported values ofN for this release are6,7,8,9,10, and11.
If the file does not have the.java extension, the--source option must be used to tell thejava command to use the source-file mode. The--source option is used for cases when the source file is a "script" to be executed and the name of the source file does not follow the normal naming conventions for Java source files.
In source-file mode, the effect is as though the source file is compiled into memory, and the first class found in the source file is executed. Any arguments placed after the name of the source file in the original command line are passed to the compiled class when it is executed.
For example, if a file were namedHelloWorld.java and contained a class namedhello.World, then the source-file mode command to launch the class would be:
java HelloWorld.javaThe example illustrates that the class can be in a named package, and does not need to be in the unnamed package. This use of source-file mode is informally equivalent to using the following two commands wherehello.World is the name of the class in the package:
javac -dmemory HelloWorld.javajava -cpmemory hello.WorldIn source-file mode, any additional command-line options are processed as follows:
The launcher scans the options specified before the source file for any that are relevant in order to compile the source file.
This includes:--class-path,--module-path,--add-exports,--add-modules,--limit-modules,--patch-module,--upgrade-module-path, and any variant forms of those options. It also includes the--enable-preview option, described inJEP 12: Preview Language and VM Features.
No provision is made to pass any additional options to the compiler, such as-processor or-Werror.
Command-line argument files (@-files) may be used in the standard way. Long lists of arguments for either the VM or the program being invoked may be placed in files specified on the command-line by prefixing the filename with an@ character.
In source-file mode, compilation proceeds as follows:
Any command-line options that are relevant to the compilation environment are taken into account.
No other source files are found and compiled, as if the source path is set to an empty value.
Annotation processing is disabled, as if-proc:none is in effect.
If a version is specified, via the--source option, the value is used as the argument for an implicit--release option for the compilation. This sets both the source version accepted by compiler and the system API that may be used by the code in the source file.
The source file is compiled in the context of an unnamed module.
The source file should contain one or more top-level classes, the first of which is taken as the class to be executed.
The compiler does not enforce the optional restriction defined at the end of JLS §7.6, that a type in a named package should exist in a file whose name is composed from the type name followed by the.java extension.
If the source file contains errors, appropriate error messages are written to the standard error stream, and the launcher exits with a non-zero exit code.
In source-file mode, execution proceeds as follows:
The class to be executed is the first top-level class found in the source file. It must contain a declaration of the standardpublic static void main(String[]) method.
The compiled classes are loaded by a custom class loader, that delegates to the application class loader. This implies that classes appearing on the application class path cannot refer to any classes declared in the source file.
The compiled classes are executed in the context of an unnamed module, as though--add-modules=ALL-DEFAULT is in effect. This is in addition to any other--add-module options that may be have been specified on the command line.
Any arguments appearing after the name of the file on the command line are passed to the standard main method in the obvious way.
It is an error if there is a class on the application class path whose name is the same as that of the class to be executed.
SeeJEP 330: Launch Single-File Source-Code Programs for complete details.
Using the JDK_JAVA_OPTIONS Launcher Environment Variable
JDK_JAVA_OPTIONS prepends its content to the options parsed from the command line. The content of theJDK_JAVA_OPTIONS environment variable is a list of arguments separated by white-space characters (as determined byisspace()). These are prepended to the command line arguments passed tojava launcher. The encoding requirement for the environment variable is the same as thejava command line on the system.JDK_JAVA_OPTIONS environment variable content is treated in the same manner as that specified in the command line.
Single (') or double (") quotes can be used to enclose arguments that contain whitespace characters. All content between the open quote and the first matching close quote are preserved by simply removing the pair of quotes. In case a matching quote is not found, the launcher will abort with an error message.@-files are supported as they are specified in the command line. However, as in@-files, use of a wildcard is not supported. In order to mitigate potential misuse ofJDK_JAVA_OPTIONS behavior, options that specify the main class (such as-jar) or cause thejava launcher to exit without executing the main class (such as-h) are disallowed in the environment variable. If any of these options appear in the environment variable, the launcher will abort with an error message. WhenJDK_JAVA_OPTIONS is set, the launcher prints a message to stderr as a reminder.
Example:
export JDK_JAVA_OPTIONS='-g @file1 -Dprop=value @file2 -Dws.prop="white spaces"' $ java -Xint @file3is equivalent to the command line:
java -g @file1 -Dprop=value @file2 -Dws.prop="white spaces" -Xint @file3Overview of Java Options
Thejava command supports a wide range of options in the following categories:
Standard Options for Java: Options guaranteed to be supported by all implementations of the Java Virtual Machine (JVM). They’re used for common actions, such as checking the version of the JRE, setting the class path, enabling verbose output, and so on.
Extra Options for Java: General purpose options that are specific to the Java HotSpot Virtual Machine. They aren’t guaranteed to be supported by all JVM implementations, and are subject to change. These options start with-X.
The advanced options aren’t recommended for casual use. These are developer options used for tuning specific areas of the Java HotSpot Virtual Machine operation that often have specific system requirements and may require privileged access to system configuration parameters. Several examples of performance tuning are provided inPerformance Tuning Examples. These options aren’t guaranteed to be supported by all JVM implementations and are subject to change. Advanced options start with-XX.
Advanced Runtime Options for Java: Control the runtime behavior of the Java HotSpot VM.
Advanced JIT Compiler Options for java: Control the dynamic just-in-time (JIT) compilation performed by the Java HotSpot VM.
Advanced Serviceability Options for Java: Enable gathering system information and performing extensive debugging.
Advanced Garbage Collection Options for Java: Control how garbage collection (GC) is performed by the Java HotSpot
Boolean options are used to either enable a feature that’s disabled by default or disable a feature that’s enabled by default. Such options don’t require a parameter. Boolean-XX options are enabled using the plus sign (-XX:+OptionName) and disabled using the minus sign (-XX:-OptionName).
For options that require an argument, the argument may be separated from the option name by a space, a colon (:), or an equal sign (=), or the argument may directly follow the option (the exact syntax differs for each option). If you’re expected to specify the size in bytes, then you can use no suffix, or use the suffixk orK for kilobytes (KB),m orM for megabytes (MB), org orG for gigabytes (GB). For example, to set the size to 8 GB, you can specify either8g,8192m,8388608k, or8589934592 as the argument. If you are expected to specify the percentage, then use a number from 0 to 1. For example, specify0.25 for 25%.
The following sections describe the options that are obsolete, deprecated, and removed:
Deprecated Java Options: Accepted and acted upon — a warning is issued when they’re used.
Obsolete Java Options: Accepted but ignored — a warning is issued when they’re used.
Removed Java Options: Removed — using them results in an error.
Standard Options for Java
These are the most commonly used options supported by all implementations of the JVM.
Note:
To specify an argument for a long option, you can use either--name=value or--namevalue.
-agentlib:libname[=options]Loads the specified native agent library. After the library name, a comma-separated list of options specific to the library can be used.
Oracle Solaris, Linux, and macOS: If the option-agentlib:foo is specified, then the JVM attempts to load the library namedlibfoo.so in the location specified by theLD_LIBRARY_PATH system variable (on macOS this variable isDYLD_LIBRARY_PATH).
Windows: If the option-agentlib:foo is specified, then the JVM attempts to load the library namedfoo.dll in the location specified by thePATH system variable.
The following example shows how to load the Java Debug Wire Protocol (JDWP) library and listen for the socket connection on port 8000, suspending the JVM before the main class loads:
-agentlib:jdwp=transport=dt_socket,server=y,address=8000-agentpath:pathname[=options]Loads the native agent library specified by the absolute path name. This option is equivalent to-agentlib but uses the full path and file name of the library.
--class-pathclasspath,-classpathclasspath, or-cpclasspathA semicolon (;) separated list of directories, JAR archives, and ZIP archives to search for class files.
Specifyingclasspath overrides any setting of theCLASSPATH environment variable. If the class path option isn’t used andclasspath isn’t set, then the user class path consists of the current directory (.).
As a special convenience, a class path element that contains a base name of an asterisk (*) is considered equivalent to specifying a list of all the files in the directory with the extension.jar or.JAR. A Java program can’t tell the difference between the two invocations. For example, if the directorymydir containsa.jar andb.JAR, then the class path elementmydir/* is expanded toA.jar:b.JAR, except that the order of JAR files is unspecified. All.jar files in the specified directory, even hidden ones, are included in the list. A class path entry consisting of an asterisk (*) expands to a list of all the jar files in the current directory. TheCLASSPATH environment variable, where defined, is similarly expanded. Any class path wildcard expansion occurs before the Java VM is started. Java programs never see wildcards that aren’t expanded except by querying the environment, such as by callingSystem.getenv("CLASSPATH").
--disable-@filesCan be used anywhere on the command line, including in an argument file, to prevent further@filename expansion. This option stops expanding@-argfiles after the option.
--enable-previewAllows classes to depend on preview features of the release.
--module-pathmodulepath... or-pmodulepathA semicolon (;) separated list of directories in which each directory is a directory of modules.
--upgrade-module-pathmodulepath...A semicolon (;) separated list of directories in which each directory is a directory of modules that replace upgradeable modules in the runtime image.
--add-modulesmodule[,module...] Specifies the root modules to resolve in addition to the initial module.module also can beALL-DEFAULT,ALL-SYSTEM, andALL-MODULE-PATH.
--list-modulesLists the observable modules and then exits.
-dmodule name or--describe-modulemodule_nameDescribes a specified module and then exits.
--dry-runCreates the VM but doesn’t execute the main method. This--dry-run option might be useful for validating the command-line options such as the module system configuration.
--validate-modulesValidates all modules and exits. This option is helpful for finding conflicts and other errors with modules on the module path.
-Dproperty=valueSets a system property value. Theproperty variable is a string with no spaces that represents the name of the property. Thevalue variable is a string that represents the value of the property. Ifvalue is a string with spaces, then enclose it in quotation marks (for example-Dfoo="foo bar").
-disableassertions[:[packagename]...|:classname] or-da[:[packagename]...|:classname]Disables assertions. By default, assertions are disabled in all packages and classes. With no arguments,-disableassertions (-da) disables assertions in all packages and classes. With thepackagename argument ending in..., the switch disables assertions in the specified package and any subpackages. If the argument is simply..., then the switch disables assertions in the unnamed package in the current working directory. With theclassname argument, the switch disables assertions in the specified class.
The-disableassertions (-da) option applies to all class loaders and to system classes (which don’t have a class loader). There’s one exception to this rule: If the option is provided with no arguments, then it doesn’t apply to system classes. This makes it easy to disable assertions in all classes except for system classes. The-disablesystemassertions option enables you to disable assertions in all system classes. To explicitly enable assertions in specific packages or classes, use the-enableassertions (-ea) option. Both options can be used at the same time. For example, to run theMyClass application with assertions enabled in the packagecom.wombat.fruitbat (and any subpackages) but disabled in the classcom.wombat.fruitbat.Brickbat, use the following command:
java -ea:com.wombat.fruitbat... -da:com.wombat.fruitbat.Brickbat MyClass-disablesystemassertions or-dsaDisables assertions in all system classes.
-enableassertions[:[packagename]...|:classname] or-ea[:[packagename]...|:classname]Enables assertions. By default, assertions are disabled in all packages and classes. With no arguments,-enableassertions (-ea) enables assertions in all packages and classes. With thepackagename argument ending in..., the switch enables assertions in the specified package and any subpackages. If the argument is simply..., then the switch enables assertions in the unnamed package in the current working directory. With theclassname argument, the switch enables assertions in the specified class.
The-enableassertions (-ea) option applies to all class loaders and to system classes (which don’t have a class loader). There’s one exception to this rule: If the option is provided with no arguments, then it doesn’t apply to system classes. This makes it easy to enable assertions in all classes except for system classes. The-enablesystemassertions option provides a separate switch to enable assertions in all system classes. To explicitly disable assertions in specific packages or classes, use the-disableassertions (-da) option. If a single command contains multiple instances of these switches, then they’re processed in order, before loading any classes. For example, to run theMyClass application with assertions enabled only in the packagecom.wombat.fruitbat (and any subpackages) but disabled in the classcom.wombat.fruitbat.Brickbat, use the following command:
java -ea:com.wombat.fruitbat... -da:com.wombat.fruitbat.Brickbat MyClass-enablesystemassertions or-esaEnables assertions in all system classes.
-help ,-h, or-?Prints the help message to the error stream.
--helpPrints the help message to the output stream.
-javaagent:jarpath[=options]Loads the specified Java programming language agent.
--show-versionPrints the product version to the output stream and continues.
-showversionPrints the product version to the error stream and continues.
--show-module-resolutionShows module resolution output during startup.
-splash:imagepathShows the splash screen with the image specified byimagepath. HiDPI scaled images are automatically supported and used if available. The unscaled image file name, such asimage.ext, should always be passed as the argument to the-splash option. The most appropriate scaled image provided is picked up automatically.
For example, to show thesplash.gif file from theimages directory when starting your application, use the following option:
-splash:images/splash.gifSee the SplashScreen API documentation for more information.
-verbose:classDisplays information about each loaded class.
-verbose:gcDisplays information about each garbage collection (GC) event.
-verbose:jniDisplays information about the use of native methods and other Java Native Interface (JNI) activity.
-verbose:moduleDisplays information about the modules in use.
--versionPrints product version to the error stream and exits.
-versionPrints product version to the output stream and exits.
-XPrints the help on extra options to the error stream.
--help-extraPrints the help on extra options to the output stream.
@argfileSpecifies one or more argument files prefixed by@ used by thejava command. It isn’t uncommon for thejava command line to be very long because of the.jar files needed in the classpath. The@argfile option overcomes command-line length limitations by enabling the launcher to expand the contents of argument files after shell expansion, but before argument processing. Contents in the argument files are expanded because otherwise, they would be specified on the command line until the-Xdisable-@files option was encountered.
The argument files can also contain the main class name and all options. If an argument file contains all of the options required by thejava command, then the command line could simply be:
java @argfile
Seejava Command-Line Argument Files for a description and examples of using@argfile .
Extra Options for Java
The followingjava options are general purpose options that are specific to the Java HotSpot Virtual Machine.
-XbatchDisables background compilation. By default, the JVM compiles the method as a background task, running the method in interpreter mode until the background compilation is finished. The-Xbatch flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed. This option is equivalent to-XX:-BackgroundCompilation.
-Xbootclasspath/a:directories|zip|JAR-filesSpecifies a list of directories, JAR files, and ZIP archives to append to the end of the default bootstrap class path.
Oracle Solaris, Linux, and macOS: Colons (:) separate entities in this list.
Windows: Semicolons (;) separate entities in this list.
-Xcheck:jniPerforms additional checks for Java Native Interface (JNI) functions. Specifically, it validates the parameters passed to the JNI function and the runtime environment data before processing the JNI request. It also checks for pending exceptions between JNI calls. Any invalid data encountered indicates a problem in the native code, and the JVM terminates with an irrecoverable error in such cases. Expect a performance degradation when this option is used.
-XcompForces compilation of methods on first invocation. By default, the Client VM (-client) performs 1,000 interpreted method invocations and the Server VM (-server) performs 10,000 interpreted method invocations to gather information for efficient compilation. Specifying the-Xcomp option disables interpreted method invocations to increase compilation performance at the expense of efficiency. You can also change the number of interpreted method invocations before compilation by using the-XX:CompileThreshold option.
-XdebugDoes nothing. Provided for backward compatibility.
-XdiagShows additional diagnostic messages.
-XfutureEnables strict class-file format checks that enforce close conformance to the class-file format specification. Developers should use this flag when developing new code. Stricter checks may become the default in future releases.
-XintRuns the application in interpreted-only mode. Compilation to native code is disabled, and all bytecode is executed by the interpreter. The performance benefits offered by the just-in-time (JIT) compiler aren’t present in this mode.
-XinternalversionDisplays more detailed JVM version information than the-version option, and then exits.
-Xloggc:optionEnables the JVM unified logging framework. Logs GC status to a file with time stamps.
-Xlog:optionConfigure or enable logging with the Java Virtual Machine (JVM) unified logging framework. SeeEnable Logging with the JVM Unified Logging Framework.
-XmixedExecutes all bytecode by the interpreter except for hot methods, which are compiled to native code.
-XmnsizeSets the initial and maximum size (in bytes) of the heap for the young generation (nursery). Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, org orG to indicate gigabytes. The young generation region of the heap is used for new objects. GC is performed in this region more often than in other regions. If the size for the young generation is too small, then a lot of minor garbage collections are performed. If the size is too large, then only full garbage collections are performed, which can take a long time to complete. Oracle recommends that you keep the size for the young generation greater than 25% and less than 50% of the overall heap size. The following examples show how to set the initial and maximum size of young generation to 256 MB using various units:
-Xmn256m-Xmn262144k-Xmn268435456Instead of the-Xmn option to set both the initial and maximum size of the heap for the young generation, you can use-XX:NewSize to set the initial size and-XX:MaxNewSize to set the maximum size.
-XmssizeSets the minimum and the initial size (in bytes) of the heap. This value must be a multiple of 1024 and greater than 1 MB. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes,g orG to indicate gigabytes. The following examples show how to set the size of allocated memory to 6 MB by using various units:
-Xms6291456-Xms6144k-Xms6m-Xmn option or the-XX:NewSize option.Note:
The-XX:InitalHeapSize option can also be used to set the initial heap size. If it appears after-Xms on the command line, then the initial heap size gets set to the value specified with-XX:InitalHeapSize.-XmxsizeSpecifies the maximum size (in bytes) of the memory allocation pool in bytes. This value must be a multiple of 1024 and greater than 2 MB. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default value is chosen at runtime based on system configuration. For server deployments,-Xms and-Xmx are often set to the same value. The following examples show how to set the maximum allowed size of allocated memory to 80 MB by using various units:
-Xmx83886080-Xmx81920k-Xmx80mThe-Xmx option is equivalent to-XX:MaxHeapSize.
-XnoclassgcDisables garbage collection (GC) of classes. This can save some GC time, which shortens interruptions during the application run. When you specify-Xnoclassgc at startup, the class objects in the application are left untouched during GC and are always considered live. This can result in more memory being permanently occupied which, if not used carefully, throws an out-of-memory exception.
-XrsReduces the use of operating system signals by the JVM. Shutdown hooks enable the orderly shutdown of a Java application by running user cleanup code (such as closing database connections) at shutdown, even if the JVM terminates abruptly.
Oracle Solaris, Linux, and macOS:
The JVM catches signals to implement shutdown hooks for unexpected termination. The JVM usesSIGHUP,SIGINT, andSIGTERM to initiate the running of shutdown hooks.
Applications embedding the JVM frequently need to trap signals such asSIGINT orSIGTERM, which can lead to interference with the JVM signal handlers. The-Xrs option is available to address this issue. When-Xrs is used, the signal masks forSIGINT,SIGTERM,SIGHUP, andSIGQUIT aren’t changed by the JVM, and signal handlers for these signals aren’t installed.
Windows:
The JVM watches for console control events to implement shutdown hooks for unexpected termination. Specifically, the JVM registers a console control handler that begins shutdown-hook processing and returnsTRUE forCTRL_C_EVENT,CTRL_CLOSE_EVENT,CTRL_LOGOFF_EVENT, andCTRL_SHUTDOWN_EVENT.
The JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes. The JVM usesCTRL_BREAK_EVENT to perform thread dumps.
If the JVM is run as a service (for example, as a servlet engine for a web server), then it can receiveCTRL_LOGOFF_EVENT but shouldn’t initiate shutdown because the operating system doesn’t actually terminate the process. To avoid possible interference such as this, the-Xrs option can be used. When the-Xrs option is used, the JVM doesn’t install a console control handler, implying that it doesn’t watch for or processCTRL_C_EVENT,CTRL_CLOSE_EVENT,CTRL_LOGOFF_EVENT, orCTRL_SHUTDOWN_EVENT.
There are two consequences of specifying-Xrs:
Oracle Solaris, Linux, and macOS:SIGQUIT thread dumps aren’t available.
Windows: Ctrl + Break thread dumps aren’t available.
User code is responsible for causing shutdown hooks to run, for example, by calling theSystem.exit() when the JVM is to be terminated.
-Xshare:modeSets the class data sharing (CDS) mode.
Possiblemode arguments for this option include the following:
autoUses CDS if possible. This is the default value for Java HotSpot 32-Bit Client VM.
onRequires the use of CDS. This option prints an error message and exits if class data sharing can’t be used.
Note:
-Xshare:on is used for testing purposes only and can cause intermittent failures due to the use of address space layout randomization by the operation system. This option should not be used in production environments.
offInstructs not to use CDS.
-XshowSettingsShows all settings and then continues.
-XshowSettings:categoryShows settings and continues. Possiblecategory arguments for this option include the following:
-Xsssize Sets the thread stack size (in bytes). Append the letterk orK to indicate KB,m orM to indicate MB, andg orG to indicate GB. The default value depends on the platform:
Linux/x64 (64-bit): 1024 KB
macOS (64-bit): 1024 KB
Oracle Solaris/x64 (64-bit): 1024 KB
Windows: The default value depends on virtual memory
The following examples set the thread stack size to 1024 KB in different units:
-Xss1m-Xss1024k-Xss1048576This option is similar to-XX:ThreadStackSize.
-Xverify--add-readsmodule=target-module(,target-module)*Updatesmodule to read thetarget-module, regardless of the module declaration.target-module can be all unnamed to read all unnamed modules.
--add-exportsmodule/package=target-module(,target-module)*Updatesmodule to exportpackage totarget-module, regardless of module declaration. Thetarget-module can be all unnamed to export to all unnamed modules.
--add-opensmodule/package=target-module(,target-module)*Updatesmodule to openpackage totarget-module, regardless of module declaration.
--illegal-access=parameterWhen present at run time,--illegal-access= takes a keywordparameter to specify a mode of operation:
Note:
This option will be removed in a future release.
permit: This mode opens each package in each module in the run-time image to code in all unnamed modules (such as code on the class path), if that package existed in JDK 8. This enables both static access (for example, by compiled bytecode), and deep reflective access through the platform's various reflection APIs. The first reflective-access operation to any such package causes a warning to be issued. However, no warnings are issued after the first occurrence. This single warning describes how to enable further warnings. This mode is the default for the current JDK but will change in a future release.
warn: This mode is identical topermit except that a warning message is issued for each illegal reflective-access operation.
debug: This mode is identical towarn except that both a warning message and a stack trace are issued for each illegal reflective-access operation.
deny: This mode disables all illegal-access operations except for those enabled by other command-line options, such as--add-opens. This mode will become the default in a future release.
The default mode,--illegal-access=permit, is intended to make you aware of code on the class path that reflectively accesses any JDK-internal APIs at least once. To learn about all such accesses, you can use thewarn or thedebug modes. For each library or framework on the class path that requires illegal access, you have two options:
If the component's maintainers have already released a fixed version that no longer uses JDK-internal APIs then you can consider upgrading to that version.
If the component still needs to be fixed, then you can contact its maintainers and ask them to replace their use of JDK-internal APIs with the proper exported APIs.
If you must continue to use a component that requires illegal access, then you can eliminate the warning messages by using one or more--add-opens options to open only those internal packages to which access is required.
To verify that your application is ready for a future version of the JDK, run it with--illegal-access=deny along with any necessary--add-opens options. Any remaining illegal-access errors will most likely be due to static references from compiled code to JDK-internal APIs. You can identify those by running thejdeps tool with the--jdk-internals option. For performance reasons, the current JDK does not issue warnings for illegal static-access operations.
--limit-modulesmodule[,module...]Specifies the limit of the universe of observable modules.
--patch-modulemodule=file(;file)*Overrides or augments a module with classes and resources in JAR files or directories.
--disable-@filesCan be used anywhere on the command line, including in an argument file, to prevent further@filename expansion. This option stops expanding@-argfiles after the option.
--sourceversionSets the version of the source in source-file mode.
Extra Options for macOS
The following extra options are macOS-specific.
Advanced Runtime Options for Java
Thesejava options control the runtime behavior of the Java HotSpot VM.
-XX:ActiveProcessorCount=xOverrides the number of CPUs that the VM will use to calculate the size of thread pools it will use for various operations such as Garbage Collection and ForkJoinPool.
The VM normally determines the number of available processors from the operating system. This flag can be useful for partitioning CPU resources when running multiple Java processes in docker containers. This flag is honored even ifUseContainerSupport is not enabled. See-XX:-UseContainerSupport for a description of enabling and disabling container support.
--XX:AllocateHeapAt=pathTakes a path to the file system and uses memory mapping to allocate the object heap on the memory device. Using this option enables the HotSpot VM to allocate the Java object heap on an alternative memory device, such as an NV-DIMM, specified by the user.
Alternative memory devices that have the same semantics as DRAM, including the semantics of atomic operations, can be used instead of DRAM for the object heap without changing the existing application code. All other memory structures (such as the code heap, metaspace, and thread stacks) continue to reside in DRAM.
Some operating systems expose non-DRAM memory through the file system. Memory-mapped files in these file systems bypass the page cache and provide a direct mapping of virtual memory to the physical memory on the device. The existing heap related flags (such as-Xmx and-Xms) and garbage-collection related flags continue to work as before.
-XX:-CompactStringsDisables the Compact Strings feature. By default, this option is enabled. When this option is enabled, Java Strings containing only single-byte characters are internally represented and stored as single-byte-per-character Strings using ISO-8859-1 / Latin-1 encoding. This reduces, by 50%, the amount of space required for Strings containing only single-byte characters. For Java Strings containing at least one multibyte character: these are represented and stored as 2 bytes per character using UTF-16 encoding. Disabling the Compact Strings feature forces the use of UTF-16 encoding as the internal representation for all Java Strings.
Cases where it may be beneficial to disable Compact Strings include the following:
When it’s known that an application overwhelmingly will be allocating multibyte character Strings
In the unexpected event where a performance regression is observed in migrating from Java SE 8 to Java SE 9 or later and an analysis shows that Compact Strings introduces the regression
In both of these scenarios, disabling Compact Strings makes sense.
-XX:CompilerDirectivesFile=fileAdds directives from a file to the directives stack when a program starts. SeeCompiler Directives and the Command Line.
-XX:CompilerDirectivesPrintPrints the directives stack when the program starts or when a new directive is added..
-XX:ConcGCThreads=nSets the number of parallel marking threads. Setsn to approximately 1/4 of the number of parallel garbage collection threads (ParallelGCThreads).
-XX:+DisableAttachMechanismDisables the mechanism that lets tools attach to the JVM. By default, this option is disabled, meaning that the attach mechanism is enabled and you can use diagnostics and troubleshooting tools such asjcmd,jstack,jmap, andjinfo.
-XX:ErrorFile=filenameSpecifies the path and file name to which error data is written when an irrecoverable error occurs. By default, this file is created in the current working directory and namedhs_err_pidpid.log wherepid is the identifier of the process that caused the error.
The following example shows how to set the default log file (note that the identifier of the process is specified as%p):
-XX:ErrorFile=./hs_err_pid%p.logOracle Solaris, Linux, and macOS: The following example shows how to set the error log to/var/log/java/java_error.log:
-XX:ErrorFile=/var/log/java/java_error.logWindows: The following example shows how to set the error log file toC:/log/java/java_error.log:
-XX:ErrorFile=C:/log/java/java_error.logIf the file can’t be created in the specified directory (due to insufficient space, a permission problem, or another issue), then the file is created in the temporary directory for the operating system:
Oracle Solaris, Linux, and macOS: The temporary directory is/tmp.
Windows: The temporary directory is specified by the value of theTMP environment variable. If that environment variable isn’t defined, then the value of theTEMP environment variable is used.
-XX:+ExtensiveErrorReportsErrorFile. This option can be turned on in environments where maximal information is desired - even if the resulting logs may be quite large and/or contain information that might be considered sensitive. The information can vary from release to release, and across different platforms. By default this option is disabled.-XX:+FailOverToOldVerifierEnables automatic failover to the old verifier when the new type checker fails. By default, this option is disabled and it’s ignored (that is, treated as disabled) for classes with a recent bytecode version. You can enable it for classes with older versions of the bytecode.
-XX:+FlightRecorderEnables the use of Java Flight Recorder (JFR) during the runtime of the application.
Note:
The-XX:+FlightRecorder option is no longer required to use JFR. This was a change made in JDK 8u40.-XX:FlightRecorderOptions=parameter=valueSets the parameters that control the behavior of JFR.
The following list contains the available JFRparameter=value entries:
allow_threadbuffers_to_disk={true|false}Specifies whether thread buffers are written directly to disk if the buffer thread is blocked. By default, this parameter is disabled.
globalbuffersize=sizeSpecifies the total amount of primary memory used for data retention. The default value is based on the value specified formemorysize. Change thememorysize parameter to alter the size of global buffers.
maxchunksize=sizeSpecifies the maximum size (in bytes) of the data chunks in a recording. Appendm orM to specify the size in megabytes (MB), andg orG to specify the size in gigabytes (GB). By default, the maximum size of data chunks is set to 12 MB. The minimum allowed is 1 MB.
memorysize=sizeDetermines how much buffer memory should be used, and sets theglobalbuffersize andnumglobalbuffers parameters based on the size specified. Appendm orM to specify the size in megabytes (MB), andg orG to specify the size in gigabytes (GB). By default, the memory size is set to 10 MB.
numglobalbuffersSpecifies the number of global buffers used. The default value is based on the memory size specified. Change thememorysize parameter to alter the number of global buffers.
old-object-queue-size=number-of-objectsMaximum number of old objects to track. By default, the number of objects is set to 256.
repository=pathSpecifies the repository (a directory) for temporary disk storage. By default, the system's temporary directory is used.
retransform={true|false}Specifies whether event classes should be retransformed using JVMTI. If false, instrumentation is added when event classes are loaded. By default, this parameter is enabled.
samplethreads={true|false}Specifies whether thread sampling is enabled. Thread sampling occurs only if the sampling event is enabled along with this parameter. By default, this parameter is enabled.
stackdepth=depthStack depth for stack traces. By default, the depth is set to 64 method calls. The maximum is 2048. Values greater than 64 could create significant overhead and reduce performance.
threadbuffersize=sizeSpecifies the per-thread local buffer size (in bytes). By default, the local buffer size is set to 8 kilobytes. Overriding this parameter could reduce performance and is not recommended.
You can specify values for multiple parameters by separating them with a comma.
-XX:InitiatingHeapOccupancyPercent=nSets the Java heap occupancy threshold that triggers a marking cycle. The default occupancy is 45 percent of the entire Java heap.
-XX:LargePageSizeInBytes=sizeOracle Solaris: Sets the maximum size (in bytes) for large pages used for the Java heap. Thesize argument must be a power of 2 (2, 4, 8, 16, and so on). Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically. SeeLarge Pages.
The following example describes how to set the large page size to 4 megabytes (MB):
-XX:LargePageSizeInBytes=4m-XX:MaxDirectMemorySize=sizeSets the maximum total size (in bytes) of thejava.nio package, direct-buffer allocations. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. By default, the size is set to 0, meaning that the JVM chooses the size for NIO direct-buffer allocations automatically.
The following examples illustrate how to set the NIO size to 1024 KB in different units:
-XX:MaxDirectMemorySize=1m-XX:MaxDirectMemorySize=1024k-XX:MaxDirectMemorySize=1048576-XX:-MaxFDLimitDisables the attempt to set the soft limit for the number of open file descriptors to the hard limit. By default, this option is enabled on all platforms, but is ignored on Windows. The only time that you may need to disable this is on Mac OS, where its use imposes a maximum of 10240, which is lower than the actual system maximum.
-XX:MaxGCPauseMillis=msSets a target value for the desired maximum pause time. The default value is200 milliseconds. The specified value doesn’t adapt to your heap size.
-XX:NativeMemoryTracking=modeSpecifies the mode for tracking JVM native memory usage. Possiblemode arguments for this option include the following:
offInstructs not to track JVM native memory usage. This is the default behavior if you don’t specify the-XX:NativeMemoryTracking option.
summaryTracks memory usage only by JVM subsystems, such as Java heap, class, code, and thread.
detailIn addition to tracking memory usage by JVM subsystems, track memory usage by individualCallSite, individual virtual memory region and its committed regions.
-XX:ObjectAlignmentInBytes=alignmentSets the memory alignment of Java objects (in bytes). By default, the value is set to 8 bytes. The specified value should be a power of 2, and must be within the range of 8 and 256 (inclusive). This option makes it possible to use compressed pointers with large Java heap sizes.
The heap size limit in bytes is calculated as:
4GB * ObjectAlignmentInBytesNote:
As the alignment value increases, the unused space between objects also increases. As a result, you may not realize any benefits from using compressed pointers with large Java heap sizes.
-XX:OnError=stringSets a custom command or a series of semicolon-separated commands to run when an irrecoverable error occurs. If the string contains spaces, then it must be enclosed in quotation marks.
Oracle Solaris, Linux, and macOS: The following example shows how the-XX:OnError option can be used to run thegcore command to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the%p designates the current process):
-XX:OnError="gcore %p;dbx - %p"Windows: The following example shows how the-XX:OnError option can be used to run theuserdump.exe utility to obtain a crash dump in case of an irrecoverable error (the%p designates the current process). This example assumes that the path to theuserdump.exe utility is specified in thePATH environment variable:
-XX:OnError="userdump.exe %p"-XX:OnOutOfMemoryError=stringSets a custom command or a series of semicolon-separated commands to run when anOutOfMemoryError exception is first thrown. If the string contains spaces, then it must be enclosed in quotation marks. For an example of a command string, see the description of the-XX:OnError option.
-XX:ParallelGCThreads=nSets the value of the STW worker threads. Sets the value ofn to the number of logical processors. The value ofn is the same as the number of logical processors up to a value of 8. If there are more than 8 logical processors, then this option sets the value ofn to approximately 5/8 of the logical processors. This works in most cases except for larger SPARC systems where the value ofn can be approximately 5/16 of the logical processors.
-XX:+PerfDataSaveToFileIf enabled, savesjstat binary data when the Java application exits. This binary data is saved in a file namedhsperfdata_pid, wherepid is the process identifier of the Java application that you ran. Use thejstat command to display the performance data contained in this file as follows:
jstat -class file:///path/hsperfdata_pidjstat -gc file:///path/hsperfdata_pid-XX:+PrintCommandLineFlagsEnables printing of ergonomically selected JVM flags that appeared on the command line. It can be useful to know the ergonomic values set by the JVM, such as the heap space size and the selected garbage collector. By default, this option is disabled and flags aren’t printed.
-XX:+PreserveFramePointer Selects between using the RBP register as a general purpose register (-XX:-PreserveFramePointer) and using the RBP register to hold the frame pointer of the currently executing method (-XX:+PreserveFramePointer). If the frame pointer is available, then external profiling tools (for example, Linux perf) can construct more accurate stack traces.
-XX:+PrintNMTStatisticsEnables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see-XX:NativeMemoryTracking). By default, this option is disabled and native memory tracking data isn’t printed.
-XX:+RelaxAccessControlCheckDecreases the amount of access control checks in the verifier. By default, this option is disabled, and it’s ignored (that is, treated as disabled) for classes with a recent bytecode version. You can enable it for classes with older versions of the bytecode.
-XX:SharedArchiveFile=pathSpecifies the path and name of the class data sharing (CDS) archive file
-XX:SharedArchiveConfigFile=shared_config_fileSpecifies additional shared data added to the archive file.
-XX:SharedClassListFile=file_nameSpecifies the text file that contains the names of the classes to store in the class data sharing (CDS) archive. This file contains the full name of one class per line, except slashes (/) replace dots (.). For example, to specify the classesjava.lang.Object andhello.Main, create a text file that contains the following two lines:
java/lang/Objecthello/MainThe classes that you specify in this text file should include the classes that are commonly used by the application. They may include any classes from the application, extension, or bootstrap class paths.
-XX:+ShowMessageBoxOnErrorEnables the display of a dialog box when the JVM experiences an irrecoverable error. This prevents the JVM from exiting and keeps the process active so that you can attach a debugger to it to investigate the cause of the error. By default, this option is disabled.
-XX:StartFlightRecording=parameter=valueStarts a JFR recording for the Java application. This option is equivalent to theJFR.start diagnostic command that starts a recording during runtime. You can set the followingparameter=value entries when starting a JFR recording:
delay=timeSpecifies the delay between the Java application launch time and the start of the recording. Appends to specify the time in seconds,m for minutes,h for hours, andd for days. For example, specifying10m means 10 minutes. By default, there’s no delay, and this parameter is set to 0.
disk={true|false}Specifies whether to write temporary data to the disk repository. By default, this parameter is set tofalse. To enable it, set the parameter totrue.
dumponexit={true|false}Specifies if the running recording is dumped when the JVM shuts down. If enabled and afilename is not entered, the recording is written to a file in the directory where the process was started. The file name is a system-generated name that contains the process ID, recording ID, and current timestamp, similar tohotspot-pid-47496-id-1-2018_01_25_19_10_41.jfr. By default, this parameter is disabled.
duration=timeSpecifies the duration of the recording. Appends to specify the time in seconds,m for minutes,h for hours, andd for days. For example, specifying5h means 5 hours. By default, the duration isn’t limited, and this parameter is set to 0.
filename=pathSpecifies the path and name of the file to which the recording is written when the recording is stopped, for example:
recording.jfr/home/user/recordings/recording.jfrc:\recordings\recording.jfrname=identifierTakes both the name and the identifier of a recording.
maxage=timeSpecifies the maximum age of disk data to keep for the recording. This parameter is valid only when thedisk parameter is set totrue. Appends to specify the time in seconds,m for minutes,h for hours, andd for days. For example, specifying30s means 30 seconds. By default, the maximum age isn’t limited, and this parameter is set to0s.
maxsize=sizeSpecifies the maximum size (in bytes) of disk data to keep for the recording. This parameter is valid only when thedisk parameter is set totrue. The value must not be less than the value for themaxchunksize parameter set with-XX:FlightRecorderOptions. Appendm orM to specify the size in megabytes, andg orG to specify the size in gigabytes. By default, the maximum size of disk data isn’t limited, and this parameter is set to0.
path-to-gc-roots={true|false}Specifies whether to collect the path to garbage collection (GC) roots at the end of a recording. By default, this parameter is disabled.
The path to GC roots is useful for finding memory leaks, but collecting it is time-consuming. Enable this option only when you start a recording for an application that you suspect has a memory leak. If thesettings parameter is set toprofile, the stack trace from where the potential leaking object was allocated is included in the information collected.
settings=pathSpecifies the path and name of the event settings file (of type JFC). By default, thedefault.jfc file is used, which is located inJRE_HOME/lib/jfr. This default settings file collects a predefined set of information with low overhead, so it has minimal impact on performance and can be used with recordings that run continuously.
A second settings file is also provided,profile.jfc, which provides more data than the default configuration, but can have more overhead and impact performance. Use this configuration for short periods of time when more information is needed.
You can specify values for multiple parameters by separating them with a comma.
-XX:ThreadStackSize=sizeSets the Java thread stack size (in kilobytes). Use of a scaling suffix, such ask, results in the scaling of the kilobytes value so that-XX:ThreadStackSize=1k sets the Java thread stack size to 1024*1024 bytes or 1 megabyte. The default value depends on the platform:
Linux: 1024 KB
macOS: 1024 KB
Oracle Solaris: 1024 KB
Windows: The default value depends on the virtual memory.
The following examples show how to set the thread stack size to 1 megabyte in different units:
-XX:ThreadStackSize=1k-XX:ThreadStackSize=1024This option is similar to-Xss.
-XX:-UseBiasedLockingDisables the use of biased locking. Some applications with significant amounts of uncontended synchronization may attain significant speedups with this flag enabled, but applications with certain patterns of locking may see slowdowns.
By default, this option is enabled.
-XX:-UseCompressedOopsDisables the use of compressed pointers. By default, this option is enabled, and compressed pointers are used when Java heap sizes are less than 32 GB. When this option is enabled, object references are represented as 32-bit offsets instead of 64-bit pointers, which typically increases performance when running the application with Java heap sizes of less than 32 GB. This option works only for 64-bit JVMs.
It’s also possible to use compressed pointers when Java heap sizes are greater than 32 GB. See the-XX:ObjectAlignmentInBytes option.
-XX:-UseContainerSupport The VM now provides automatic container detection support, which allows the VM to determine the amount of memory and number of processors that are available to a Java process running in docker containers. It uses this information to allocate system resources. This support is only available on Linux x64 platforms. If supported, the default for this flag is true, and container support is enabled by default. It can be disabled with -XX:-UseContainerSupport.
Unified Logging is available to help diagnose issues related to this support.
Use-Xlog:os+container=trace for maximum logging of container information. SeeEnable Logging with the JVM Unified Logging Framework for a description of using Unified Logging.
XX:+UseGCLogRotationHandles large log files. This option must be used with-Xloggc:filename.
-XX:NumberOfGClogFiles=number_of_filesHandles large log files. Thenumber_of_files must be greater than or equal to1. The default is1.
-XX:GCLogFileSize=numberHandles large log files. Thenumber can be in the form ofnumberM ornumberK. The default is set to512K.
-XX:+UseHugeTLBFSLinux only: This option is the equivalent of specifying-XX:+UseLargePages. This option is disabled by default. This option pre-allocates all large pages up-front, when memory is reserved; consequently the JVM can’t dynamically grow or shrink large pages memory areas. See-XX:UseTransparentHugePages if you want this behavior.
SeeLarge Pages.
-XX:+UseLargePagesEnables the use of large page memory. By default, this option is disabled and large page memory isn’t used.
SeeLarge Pages.
-XX:+UseMembarEnables issuing of membars on thread-state transitions. This option is disabled by default on all platforms except ARM servers, where it’s enabled. (It’s recommended that you don’t disable this option on ARM servers.)
-XX:+UsePerfDataEnables theperfdata feature. This option is enabled by default to allow JVM monitoring and performance testing. Disabling it suppresses the creation of thehsperfdata_userid directories. To disable theperfdata feature, specify-XX:-UsePerfData.
-XX:+UseTransparentHugePagesLinux only: Enables the use of large pages that can dynamically grow or shrink. This option is disabled by default. You may encounter performance problems with transparent huge pages as the OS moves other pages around to create huge pages; this option is made available for experimentation.
-XX:+AllowUserSignalHandlersEnables installation of signal handlers by the application. By default, this option is disabled and the application isn’t allowed to install signal handlers.
-XX:VMOptionsFile=filename Allows user to specify VM options in a file, for example,java -XX:VMOptionsFile=/var/my_vm_options HelloWorld.
Advanced JIT Compiler Options for java
Thesejava options control the dynamic just-in-time (JIT) compilation performed by the Java HotSpot VM.
-XX:AllocateInstancePrefetchLines=linesSets the number of lines to prefetch ahead of the instance allocation pointer. By default, the number of lines to prefetch is set to 1:
-XX:AllocateInstancePrefetchLines=1Only the Java HotSpot Server VM supports this option.
-XX:AllocatePrefetchDistance=sizeSets the size (in bytes) of the prefetch distance for object allocation. Memory about to be written with the value of new objects is prefetched up to this distance starting from the address of the last allocated object. Each Java thread has its own allocation point.
Negative values denote that prefetch distance is chosen based on the platform. Positive values are bytes to prefetch. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default value is set to -1.
The following example shows how to set the prefetch distance to 1024 bytes:
-XX:AllocatePrefetchDistance=1024Only the Java HotSpot Server VM supports this option.
-XX:AllocatePrefetchInstr=instructionSets the prefetch instruction to prefetch ahead of the allocation pointer. Only the Java HotSpot Server VM supports this option. Possible values are from 0 to 3. The actual instructions behind the values depend on the platform. By default, the prefetch instruction is set to 0:
-XX:AllocatePrefetchInstr=0Only the Java HotSpot Server VM supports this option.
-XX:AllocatePrefetchLines=linesSets the number of cache lines to load after the last object allocation by using the prefetch instructions generated in compiled code. The default value is 1 if the last allocated object was an instance, and 3 if it was an array.
The following example shows how to set the number of loaded cache lines to 5:
-XX:AllocatePrefetchLines=5Only the Java HotSpot Server VM supports this option.
-XX:AllocatePrefetchStepSize=sizeSets the step size (in bytes) for sequential prefetch instructions. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. By default, the step size is set to 16 bytes:
-XX:AllocatePrefetchStepSize=16Only the Java HotSpot Server VM supports this option.
-XX:AllocatePrefetchStyle=styleSets the generated code style for prefetch instructions. Thestyle argument is an integer from 0 to 3:
0Don’t generate prefetch instructions.
1Execute prefetch instructions after each allocation. This is the default parameter.
2Use the thread-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed.
3Use BIS instruction on SPARC for allocation prefetch.
Only the Java HotSpot Server VM supports this option.
-XX:+BackgroundCompilationEnables background compilation. This option is enabled by default. To disable background compilation, specify-XX:-BackgroundCompilation (this is equivalent to specifying-Xbatch).
-XX:CICompilerCount=threadsSets the number of compiler threads to use for compilation. By default, the number of threads is set to 2 for the server JVM, to 1 for the client JVM, and it scales to the number of cores if tiered compilation is used. The following example shows how to set the number of threads to 2:
-XX:CICompilerCount=2-XX:CompileCommand=command,method[,option]Specifies acommand to perform on amethod. For example, to exclude theindexOf() method of theString class from being compiled, use the following:
-XX:CompileCommand=exclude,java/lang/String.indexOfNote that the full class name is specified, including all packages and subpackages separated by a slash (/). For easier cut-and-paste operations, it’s also possible to use the method name format produced by the-XX:+PrintCompilation and-XX:+LogCompilation options:
-XX:CompileCommand=exclude,java.lang.String::indexOfIf the method is specified without the signature, then the command is applied to all methods with the specified name. However, you can also specify the signature of the method in the class file format. In this case, you should enclose the arguments in quotation marks, otherwise the shell treats the semicolon as a command end. For example, if you want to exclude only theindexOf(String) method of theString class from being compiled, use the following:
-XX:CompileCommand="exclude,java/lang/String.indexOf,(Ljava/lang/String;)I"You can also use the asterisk (*) as a wildcard for class and method names. For example, to exclude allindexOf() methods in all classes from being compiled, use the following:
-XX:CompileCommand=exclude,*.indexOfThe commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell. You can pass arguments to-XX:CompileCommand using spaces as separators by enclosing the argument in quotation marks:
-XX:CompileCommand="exclude java/lang/String indexOf"Note that after parsing the commands passed on the command line using the-XX:CompileCommand options, the JIT compiler then reads commands from the.hotspot_compiler file. You can add commands to this file or specify a different file by using the-XX:CompileCommandFile option.
To add several commands, either specify the-XX:CompileCommand option multiple times, or separate each argument with the new line separator (\n). The following commands are available:
breakSets a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method.
compileonlyExcludes all methods from compilation except for the specified method. As an alternative, you can use the-XX:CompileOnly option, which lets you specify several methods.
dontinlinePrevents inlining of the specified method.
excludeExcludes the specified method from compilation.
helpPrints a help message for the-XX:CompileCommand option.
inlineAttempts to inline the specified method.
logExcludes compilation logging (with the-XX:+LogCompilation option) for all methods except for the specified method. By default, logging is performed for all compiled methods.
optionPasses a JIT compilation option to the specified method in place of the last argument (option). The compilation option is set at the end, after the method name. For example, to enable theBlockLayoutByFrequency option for theappend() method of theStringBuffer class, use the following:
-XX:CompileCommand=option,java/lang/StringBuffer.append,BlockLayoutByFrequencyYou can specify multiple compilation options, separated by commas or spaces.
printPrints generated assembler code after compilation of the specified method.
quietInstructs not to print the compile commands. By default, the commands that you specify with the-XX:CompileCommand option are printed. For example, if you exclude from compilation theindexOf() method of theString class, then the following is printed to standard output:
CompilerOracle: exclude java/lang/String.indexOfYou can suppress this by specifying the-XX:CompileCommand=quiet option before other-XX:CompileCommand options.
-XX:CompileCommandFile=filenameSets the file from which JIT compiler commands are read. By default, the.hotspot_compiler file is used to store commands performed by the JIT compiler.
Each line in the command file represents a command, a class name, and a method name for which the command is used. For example, this line prints assembly code for thetoString() method of theString class:
print java/lang/String toStringIf you’re using commands for the JIT compiler to perform on methods, then see the-XX:CompileCommand option.
-XX:CompileOnly=methodsSets the list of methods (separated by commas) to which compilation should be restricted. Only the specified methods are compiled. Specify each method with the full class name (including the packages and subpackages). For example, to compile only thelength() method of theString class and thesize() method of theList class, use the following:
-XX:CompileOnly=java/lang/String.length,java/util/List.sizeNote that the full class name is specified, including all packages and subpackages separated by a slash (/). For easier cut and paste operations, it’s also possible to use the method name format produced by the-XX:+PrintCompilation and-XX:+LogCompilation options:
-XX:CompileOnly=java.lang.String::length,java.util.List::sizeAlthough wildcards aren’t supported, you can specify only the class or package name to compile all methods in that class or package, as well as specify just the method to compile the methods with this name in any class:
-XX:CompileOnly=java/lang/String-XX:CompileOnly=java/lang-XX:CompileOnly=.length-XX:CompileThreshold=invocationsSets the number of interpreted method invocations before compilation. By default, in the server JVM, the JIT compiler performs 10,000 interpreted method invocations to gather information for efficient compilation. For the client JVM, the default setting is 1,500 invocations. This option is ignored when tiered compilation is enabled. See the option-XX:-TieredCompilation. The following example shows how to set the number of interpreted method invocations to 5,000:
-XX:CompileThreshold=5000You can completely disable interpretation of Java methods before compilation by specifying the-Xcomp option.
-XX:CompileThresholdScaling=scaleProvides unified control of first compilation. This option controls when methods are first compiled for both the tiered and the nontiered modes of operation. TheCompileThresholdScaling option has an integer value between 0 and +Inf and scales the thresholds corresponding to the current mode of operation (both tiered and nontiered). SettingCompileThresholdScaling to a value less than 1.0 results in earlier compilation while values greater than 1.0 delay compilation. SettingCompileThresholdScaling to 0 is equivalent to disabling compilation.
-XX:+DoEscapeAnalysisEnables the use of escape analysis. This option is enabled by default. To disable the use of escape analysis, specify-XX:-DoEscapeAnalysis. Only the Java HotSpot Server VM supports this option.
-XX:InitialCodeCacheSize=sizeSets the initial code cache size (in bytes). Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default value is set to 500 KB. The initial code cache size shouldn’t be less than the system's minimal memory page size. The following example shows how to set the initial code cache size to 32 KB:
-XX:InitialCodeCacheSize=32k-XX:+InlineEnables method inlining. This option is enabled by default to increase performance. To disable method inlining, specify-XX:-Inline.
-XX:InlineSmallCode=sizeSets the maximum code size (in bytes) for compiled methods that should be inlined. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. Only compiled methods with the size smaller than the specified size is inlined. By default, the maximum code size is set to 1000 bytes:
-XX:InlineSmallCode=1000-XX:+LogCompilationEnables logging of compilation activity to a file namedhotspot.log in the current working directory. You can specify a different log file path and name using the-XX:LogFile option.
By default, this option is disabled and compilation activity isn’t logged. The-XX:+LogCompilation option has to be used together with the-XX:UnlockDiagnosticVMOptions option that unlocks diagnostic JVM options.
You can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the-XX:+PrintCompilation option.
-XX:MaxInlineSize=sizeSets the maximum bytecode size (in bytes) of a method to be inlined. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. By default, the maximum bytecode size is set to 35 bytes:
-XX:MaxInlineSize=35-XX:MaxNodeLimit=nodesSets the maximum number of nodes to be used during single method compilation. By default, the maximum number of nodes is set to 65,000:
-XX:MaxNodeLimit=65000-XX:NonNMethodCodeHeapSize=sizeSets the size in bytes of the code segment containing nonmethod code.
A nonmethod code segment containing nonmethod code, such as compiler buffers and the bytecode interpreter. This code type stays in the code cache forever. This flag is used only if—XX:SegmentedCodeCache is enabled.
—XX:NonProfiledCodeHeapSize=sizeSets the size in bytes of the code segment containing nonprofiled methods. This flag is used only if—XX:SegmentedCodeCache is enabled.
-XX:MaxTrivialSize=sizeSets the maximum bytecode size (in bytes) of a trivial method to be inlined. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. By default, the maximum bytecode size of a trivial method is set to 6 bytes:
-XX:MaxTrivialSize=6-XX:+OptimizeStringConcatEnables the optimization ofString concatenation operations. This option is enabled by default. To disable the optimization ofString concatenation operations, specify-XX:-OptimizeStringConcat. Only the Java HotSpot Server VM supports this option.
-XX:+PrintAssemblyEnables printing of assembly code for bytecoded and native methods by using the externalhsdis-<arch>.so or.dll library. For 64-bit VM on Windows, it’shsdis-amd64.dll. This lets you to see the generated code, which may help you diagnose performance issues.
By default, this option is disabled and assembly code isn’t printed. The-XX:+PrintAssembly option has to be used together with the-XX:UnlockDiagnosticVMOptions option that unlocks diagnostic JVM options.
-XX:ProfiledCodeHeapSize=sizeSets the size in bytes of the code segment containing profiled methods. This flag is used only if-XX:SegmentedCodeCache is enabled.
-XX:+PrintCompilationEnables verbose diagnostic output from the JVM by printing a message to the console every time a method is compiled. This lets you see which methods actually get compiled. By default, this option is disabled and diagnostic output isn’t printed.
You can also log compilation activity to a file by using the-XX:+LogCompilation option.
-XX:+PrintInliningEnables printing of inlining decisions. This let’s you see which methods are getting inlined.
By default, this option is disabled and inlining information isn’t printed. The-XX:+PrintInlining option has to be used together with the-XX:+UnlockDiagnosticVMOptions option that unlocks diagnostic JVM options.
-XX:ReservedCodeCacheSize=sizeSets the maximum code cache size (in bytes) for JIT-compiled code. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default maximum code cache size is 240 MB, unless you disable tiered compilation with the option-XX:-TieredCompilation, then the default size is 48 MB. This option has a limit of 2 GB; otherwise, an error is generated. The maximum code cache size shouldn’t be less than the initial code cache size. See the option-XX:InitialCodeCacheSize.
-XX:RTMAbortRatio=abort_ratioSpecifies the RTM abort ratio as a percentage (%) of all executed RTM transactions. If a number of aborted transactions becomes greater than this ratio, then the compiled code is deoptimized. This ratio is used when the-XX:+UseRTMDeopt option is enabled. The default value of this option is 50. This means that the compiled code is deoptimized if 50% of all transactions are aborted.
-XX:+SegmentedCodeCacheEnables segmentation of the code cache. Without the-XX:+SegmentedCodeCache, the code cache consists of one large segment. With-XX:+SegmentedCodeCache, we have separate segments for nonmethod, profiled method, and nonprofiled method code. These segments aren’t resized at runtime. The feature is enabled by default if tiered compilation is enabled (-XX:+TieredCompilation) and-XX:ReservedCodeCacheSize >= 240 MB. The advantages are better control of the memory footprint, reduced code fragmentation, and better iTLB/iCache behavior due to improved locality. iTLB/iCache is a CPU-specific term meaning Instruction Translation Lookaside Buffer (ITLB). ICache is an instruction cache in the CPU. The implementation of the code cache can be found in the file:/share/vm/code/codeCache.cpp.
-XX:StartAggressiveSweepingAt=percentForces stack scanning of active methods to aggressively remove unused code when only the given percentage of the code cache is free. The default value is 10%.
-XX:RTMRetryCount=number_of_retriesSpecifies the number of times that the RTM locking code is retried, when it is aborted or busy, before falling back to the normal locking mechanism. The default value for this option is 5. The-XX:UseRTMLocking option must be enabled.
-XX:-TieredCompilationDisables the use of tiered compilation. By default, this option is enabled. Only the Java HotSpot Server VM supports this option.
-XX:+UseAESEnables hardware-based AES intrinsics for Intel, AMD, and SPARC hardware. Intel Westmere (2010 and newer), AMD Bulldozer (2011 and newer), and SPARC (T4 and newer) are the supported hardware. The-XX:+UseAES is used in conjunction with UseAESIntrinsics. Flags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions.
-XX:+UseAESIntrinsicsEnables-XX:+UseAES and-XX:+UseAESIntrinsics flags by default and are supported only for the Java HotSpot Server VM. To disable hardware-based AES intrinsics, specify-XX:-UseAES -XX:-UseAESIntrinsics. For example, to enable hardware AES, use the following flags:
-XX:+UseAES -XX:+UseAESIntrinsicsFlags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions. To support UseAES and UseAESIntrinsics flags, use the-server option to select the Java HotSpot Server VM. These flags aren’t supported on Client VM.
-XX:+UseCMoveUnconditionallyGenerates CMove (scalar and vector) instructions regardless of profitability analysis.
-XX:+UseCodeCacheFlushingEnables flushing of the code cache before shutting down the compiler. This option is enabled by default. To disable flushing of the code cache before shutting down the compiler, specify-XX:-UseCodeCacheFlushing.
-XX:+UseCondCardMarkEnables checking if the card is already marked before updating the card table. This option is disabled by default. It should be used only on machines with multiple sockets, where it increases the performance of Java applications that rely on concurrent operations. Only the Java HotSpot Server VM supports this option.
-XX:+UseCountedLoopSafepointsKeeps safepoints in counted loops. Its default value is false.
-XX:+UseFMAEnables hardware-based FMA intrinsics for hardware where FMA instructions are available (such as, Intel, SPARC, and ARM64). FMA intrinsics are generated for thejava.lang.Math.fma(a,b,c) methods that calculate the value of (a *b +c) expressions.
-XX:+UseRTMDeoptAutotunes RTM locking depending on the abort ratio. This ratio is specified by the-XX:RTMAbortRatio option. If the number of aborted transactions exceeds the abort ratio, then the method containing the lock is deoptimized and recompiled with all locks as normal locks. This option is disabled by default. The-XX:+UseRTMLocking option must be enabled.
-XX:+UseRTMLockingGenerates Restricted Transactional Memory (RTM) locking code for all inflated locks, with the normal locking mechanism as the fallback handler. This option is disabled by default. Options related to RTM are available only for the Java HotSpot Server VM on x86 CPUs that support Transactional Synchronization Extensions (TSX).
RTM is part of Intel's TSX, which is an x86 instruction set extension and facilitates the creation of multithreaded applications. RTM introduces the new instructionsXBEGIN,XABORT,XEND, andXTEST. TheXBEGIN andXEND instructions enclose a set of instructions to run as a transaction. If no conflict is found when running the transaction, then the memory and register modifications are committed together at theXEND instruction. TheXABORT instruction can be used to explicitly abort a transaction and theXEND instruction checks if a set of instructions is being run in a transaction.
A lock on a transaction is inflated when another thread tries to access the same transaction, thereby blocking the thread that didn’t originally request access to the transaction. RTM requires that a fallback set of operations be specified in case a transaction aborts or fails. An RTM lock is a lock that has been delegated to the TSX's system.
RTM improves performance for highly contended locks with low conflict in a critical region (which is code that must not be accessed by more than one thread concurrently). RTM also improves the performance of coarse-grain locking, which typically doesn’t perform well in multithreaded applications. (Coarse-grain locking is the strategy of holding locks for long periods to minimize the overhead of taking and releasing locks, while fine-grained locking is the strategy of trying to achieve maximum parallelism by locking only when necessary and unlocking as soon as possible.) Also, for lightly contended locks that are used by different threads, RTM can reduce false cache line sharing, also known as cache line ping-pong. This occurs when multiple threads from different processors are accessing different resources, but the resources share the same cache line. As a result, the processors repeatedly invalidate the cache lines of other processors, which forces them to read from main memory instead of their cache.
-XX:+UseSHAEnables hardware-based intrinsics for SHA crypto hash functions for SPARC hardware. TheUseSHA option is used in conjunction with theUseSHA1Intrinsics,UseSHA256Intrinsics, andUseSHA512Intrinsics options.
TheUseSHA andUseSHA*Intrinsics flags are enabled by default, and are supported only for Java HotSpot Server VM 64-bit on SPARC T4 and newer.
This feature is applicable only when using thesun.security.provider.Sun provider for SHA operations. Flags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions.
To disable all hardware-based SHA intrinsics, specify the-XX:-UseSHA. To disable only a particular SHA intrinsic, use the appropriate corresponding option. For example:-XX:-UseSHA256Intrinsics.
-XX:+UseSHA1IntrinsicsEnables intrinsics for SHA-1 crypto hash function. Flags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions.
-XX:+UseSHA256IntrinsicsEnables intrinsics for SHA-224 and SHA-256 crypto hash functions. Flags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions.
-XX:+UseSHA512IntrinsicsEnables intrinsics for SHA-384 and SHA-512 crypto hash functions. Flags that control intrinsics now require the option-XX:+UnlockDiagnosticVMOptions.
-XX:+UseSuperWordEnables the transformation of scalar operations into superword operations. Superword is a vectorization optimization. This option is enabled by default. To disable the transformation of scalar operations into superword operations, specify-XX:-UseSuperWord. Only the Java HotSpot Server VM supports this option.
Advanced Serviceability Options for Java
Thesejava options provide the ability to gather system information and perform extensive debugging.
-XX:+ExtendedDTraceProbesOracle Solaris, Linux, and macOS: Enables additionaldtrace tool probes that affect performance. By default, this option is disabled anddtrace performs only standard probes.
-XX:+HeapDumpOnOutOfMemoryErrorEnables dumping the Java heap to a file in the current directory by using the heap profiler (HPROF) when ajava.lang.OutOfMemoryError exception is thrown. You can explicitly set the heap dump file path and name using the-XX:HeapDumpPath option. By default, this option is disabled and the heap isn’t dumped when anOutOfMemoryError exception is thrown.
-XX:HeapDumpPath=pathSets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the-XX:+HeapDumpOnOutOfMemoryError option is set. By default, the file is created in the current working directory, and it’s namedjava_pid<pid>.hprof where<pid> is the identifier of the process that caused the error. The following example shows how to set the default file explicitly (%p represents the current process identifier):
-XX:HeapDumpPath=./java_pid%p.hprofOracle Solaris, Linux, and macOS: The following example shows how to set the heap dump file to/var/log/java/java_heapdump.hprof:
-XX:HeapDumpPath=/var/log/java/java_heapdump.hprofWindows: The following example shows how to set the heap dump file toC:/log/java/java_heapdump.log:
-XX:HeapDumpPath=C:/log/java/java_heapdump.log-XX:LogFile=pathSets the path and file name to where log data is written. By default, the file is created in the current working directory, and it’s namedhotspot.log.
Oracle Solaris, Linux, and macOS: The following example shows how to set the log file to/var/log/java/hotspot.log:
-XX:LogFile=/var/log/java/hotspot.logWindows: The following example shows how to set the log file toC:/log/java/hotspot.log:
-XX:LogFile=C:/log/java/hotspot.log-XX:+PrintClassHistogramEnables printing a class instance histogram after one of the following events:
Oracle Solaris, Linux, and macOS:Control+Break
Windows:Control+C (SIGTERM)
By default, this option is disabled.
Setting this option is equivalent to running thejmap -histo command, or thejcmdpid GC.class_histogram command, wherepid is the current Java process identifier.
-XX:+PrintConcurrentLocksEnables printing ofjava.util.concurrent locks after one of the following events:
Oracle Solaris, Linux, and macOS:Control+Break
Windows:Control+C (SIGTERM)
By default, this option is disabled.
Setting this option is equivalent to running thejstack -l command or thejcmdpid Thread.print -l command, wherepid is the current Java process identifier.
-XX:+PrintFlagsRangesPrints the range specified and allows automatic testing of the values. SeeValidate Java Virtual Machine Flag Arguments.
-XX:+UnlockDiagnosticVMOptionsUnlocks the options intended for diagnosing the JVM. By default, this option is disabled and diagnostic options aren’t available.
Advanced Garbage Collection Options for Java
Thesejava options control how garbage collection (GC) is performed by the Java HotSpot VM.
-XX:+AggressiveHeapEnables Java heap optimization. This sets various parameters to be optimal for long-running jobs with intensive memory allocation, based on the configuration of the computer (RAM and CPU). By default, the option is disabled and the heap isn’t optimized.
-XX:+AlwaysPreTouchEnables touching of every page on the Java heap during JVM initialization. This gets all pages into memory before entering themain() method. The option can be used in testing to simulate a long-running system with all virtual memory mapped to physical memory. By default, this option is disabled and all pages are committed as JVM heap space fills.
-XX:+CMSClassUnloadingEnabledEnables class unloading when using the concurrent mark-sweep (CMS) garbage collector. This option is enabled by default. To disable class unloading for the CMS garbage collector, specify-XX:-CMSClassUnloadingEnabled.
-XX:CMSExpAvgFactor=percentSets the percentage of time (0 to 100) used to weight the current sample when computing exponential averages for the concurrent collection statistics. By default, the exponential averages factor is set to 25%. The following example shows how to set the factor to 15%:
-XX:CMSExpAvgFactor=15-XX:CMSIncrementalDutySafetyFactor=percentSets the percentage (0 to 100) used to add conservatism when computing the duty cycle. The default value is 10.
-XX:+CMSScavengeBeforeRemarkEnables scavenging attempts before the CMS remark step. By default, this option is disabled.
-XX:CMSTriggerRatio=percentSets the percentage (0 to 100) of the value specified by the option-XX:MinHeapFreeRatio that’s allocated before a CMS collection cycle commences. The default value is set to 80%.
The following example shows how to set the occupancy fraction to 75%:
-XX:CMSTriggerRatio=75-XX:ConcGCThreads=threadsSets the number of threads used for concurrent GC. Setsthreads to approximately 1/4 of the number of parallel garbage collection threads. The default value depends on the number of CPUs available to the JVM.
For example, to set the number of threads for concurrent GC to 2, specify the following option:
-XX:ConcGCThreads=2-XX:+DisableExplicitGCEnables the option that disables processing of calls to theSystem.gc() method. This option is disabled by default, meaning that calls toSystem.gc() are processed. If processing calls toSystem.gc() is disabled, then the JVM still performs GC when necessary.
-XX:+ExplicitGCInvokesConcurrentEnables invoking of concurrent GC by using theSystem.gc() request. This option is disabled by default and can be enabled only with the deprecated-XX:+UseConcMarkSweepGC option and the-XX:+UseG1GC option.
-XX:+ExplicitGCInvokesConcurrentAndUnloadsClassesEnables invoking concurrent GC by using theSystem.gc() request and unloading classes during the concurrent GC cycle. This option is disabled by default and can be enabled only with the deprecated-XX:+UseConcMarkSweepGC option.
-XX:G1HeapRegionSize=sizeSets the size of the regions into which the Java heap is subdivided when using the garbage-first (G1) collector. The value is a power of 2 and can range from 1 MB to 32 MB. The goal is to have around 2048 regions based on the minimum Java heap size. The default region size is determined ergonomically based on the heap size.
The following example sets the size of the subdivisions to 16 MB:
-XX:G1HeapRegionSize=16m-XX:G1HeapWastePercent=percentSets the percentage of heap that you’re willing to waste. The Java HotSpot VM doesn’t initiate the mixed garbage collection cycle when the reclaimable percentage is less than the heap waste percentage. The default is 5 percent.
-XX:G1MaxNewSizePercent=percentSets the percentage of the heap size to use as the maximum for the young generation size. The default value is 60 percent of your Java heap.
This is an experimental flag. This setting replaces the-XX:DefaultMaxNewGenPercent setting.
This setting isn’t available in Java HotSpot VM build 23 or earlier.
-XX:G1MixedGCCountTarget=numberSets the target number of mixed garbage collections after a marking cycle to collect old regions with at mostG1MixedGCLIveThresholdPercent live data. The default is 8 mixed garbage collections. The goal for mixed collections is to be within this target number.
This setting isn’t available in Java HotSpot VM build 23 or earlier.
-XX:G1MixedGCLiveThresholdPercent=percentSets the occupancy threshold for an old region to be included in a mixed garbage collection cycle. The default occupancy is 85 percent.
This is an experimental flag. This setting replaces the-XX:G1OldCSetRegionLiveThresholdPercent setting.
This setting isn’t available in Java HotSpot VM build 23 or earlier.
-XX:G1NewSizePercent=percentSets the percentage of the heap to use as the minimum for the young generation size. The default value is 5 percent of your Java heap.
This is an experimental flag. This setting replaces the-XX:DefaultMinNewGenPercent setting.
This setting isn’t available in Java HotSpot VM build 23 or earlier.
-XX:G1OldCSetRegionThresholdPercent=percentSets an upper limit on the number of old regions to be collected during a mixed garbage collection cycle. The default is 10 percent of the Java heap.
This setting isn’t available in Java HotSpot VM build 23 or earlier.
-XX:G1ReservePercent=percentSets the percentage of the heap (0 to 50) that’s reserved as a false ceiling to reduce the possibility of promotion failure for the G1 collector. When you increase or decrease the percentage, ensure that you adjust the total Java heap by the same amount. By default, this option is set to 10%.
The following example sets the reserved heap to 20%:
-XX:G1ReservePercent=20-XX:InitialHeapOccupancyPercent=percentSets the Java heap occupancy threshold that triggers a marking cycle. The default occupancy is 45 percent of the entire Java heap.
-XX:InitialHeapSize=sizeSets the initial size (in bytes) of the memory allocation pool. This value must be either 0, or a multiple of 1024 and greater than 1 MB. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default value is chosen at run time based on the system configuration.See the sectionErgonomics in theJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide.
The following examples show how to set the size of allocated memory to 6 MB using various units:
-XX:InitialHeapSize=6291456-XX:InitialHeapSize=6144k-XX:InitialHeapSize=6m-XX:NewSize option.Note:
The-Xms option sets both the minimum and the initial heap size of the heap. If-Xms appears after-XX:InitialHeapSize on the command line, then the initial heap size gets set to the value specified with-Xms.-XX:InitialSurvivorRatio=ratioSets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the-XX:+UseParallelGC and/or -XX:+UseParallelOldGC options). Adaptive sizing is enabled by default with the throughput garbage collector by using the-XX:+UseParallelGC and-XX:+UseParallelOldGC options, and the survivor space is resized according to the application behavior, starting with the initial value. If adaptive sizing is disabled (using the-XX:-UseAdaptiveSizePolicy option), then the-XX:SurvivorRatio option should be used to set the size of the survivor space for the entire execution of the application.
The following formula can be used to calculate the initial size of survivor space (S) based on the size of the young generation (Y), and the initial survivor space ratio (R):
S=Y/(R+2)The 2 in the equation denotes two survivor spaces. The larger the value specified as the initial survivor space ratio, the smaller the initial survivor space size.
By default, the initial survivor space ratio is set to 8. If the default value for the young generation space size is used (2 MB), then the initial size of the survivor space is 0.2 MB.
The following example shows how to set the initial survivor space ratio to 4:
-XX:InitialSurvivorRatio=4-XX:InitiatingHeapOccupancyPercent=percentSets the percentage of the heap occupancy (0 to 100) at which to start a concurrent GC cycle. It’s used by garbage collectors that trigger a concurrent GC cycle based on the occupancy of the entire heap, not just one of the generations (for example, the G1 garbage collector).
By default, the initiating value is set to 45%. A value of 0 implies nonstop GC cycles. The following example shows how to set the initiating heap occupancy to 75%:
-XX:InitiatingHeapOccupancyPercent=75-XX:MaxGCPauseMillis=timeSets a target for the maximum GC pause time (in milliseconds). This is a soft goal, and the JVM will make its best effort to achieve it. The specified value doesn’t adapt to your heap size. By default, there’s no maximum pause time value.
The following example shows how to set the maximum target pause time to 500 ms:
-XX:MaxGCPauseMillis=500-XX:MaxHeapSize=sizeSets the maximum size (in byes) of the memory allocation pool. This value must be a multiple of 1024 and greater than 2 MB. Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. The default value is selected at run time based on the system configuration. For server deployments, the options-XX:InitialHeapSize and-XX:MaxHeapSize are often set to the same value.
The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
-XX:MaxHeapSize=83886080-XX:MaxHeapSize=81920k-XX:MaxHeapSize=80mOn Oracle Solaris 7 and Oracle Solaris 8 SPARC platforms, the upper limit for this value is approximately 4,000 MB minus overhead amounts. On Oracle Solaris 2.6 and x86 platforms, the upper limit is approximately 2,000 MB minus overhead amounts. On Linux platforms, the upper limit is approximately 2,000 MB minus overhead amounts.
The-XX:MaxHeapSize option is equivalent to-Xmx.
-XX:MaxHeapFreeRatio=percentSets the maximum allowed percentage of free heap space (0 to 100) after a GC event. If free heap space expands above this value, then the heap is shrunk. By default, this value is set to 70%.
Minimize the Java heap size by lowering the values of the parametersMaxHeapFreeRatio (default value is 70%) andMinHeapFreeRatio (default value is 40%) with the command-line options-XX:MaxHeapFreeRatio and-XX:MinHeapFreeRatio. LoweringMaxHeapFreeRatio to as low as 10% andMinHeapFreeRatio to 5% has successfully reduced the heap size without too much performance regression; however, results may vary greatly depending on your application. Try different values for these parameters until they’re as low as possible yet still retain acceptable performance.
-XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5Customers trying to keep the heap small should also add the option-XX:-ShrinkHeapInSteps. SeePerformance Tuning Examples for a description of using this option to keep the Java heap small by reducing the dynamic footprint for embedded applications.
-XX:MaxMetaspaceSize=sizeSets the maximum amount of native memory that can be allocated for class metadata. By default, the size isn’t limited. The amount of metadata for an application depends on the application itself, other running applications, and the amount of memory available on the system.
The following example shows how to set the maximum class metadata size to 256 MB:
-XX:MaxMetaspaceSize=256m-XX:MaxNewSize=sizeSets the maximum size (in bytes) of the heap for the young generation (nursery). The default value is set ergonomically.
-XX:MaxTenuringThreshold=thresholdSets the maximum tenuring threshold for use in adaptive GC sizing. The largest value is 15. The default value is 15 for the parallel (throughput) collector, and 6 for the CMS collector.
The following example shows how to set the maximum tenuring threshold to 10:
-XX:MaxTenuringThreshold=10-XX:MetaspaceSize=sizeSets the size of the allocated class metadata space that triggers a garbage collection the first time it’s exceeded. This threshold for a garbage collection is increased or decreased depending on the amount of metadata used. The default size depends on the platform.
-XX:MinHeapFreeRatio=percentSets the minimum allowed percentage of free heap space (0 to 100) after a GC event. If free heap space falls below this value, then the heap is expanded. By default, this value is set to 40%.
Minimize Java heap size by lowering the values of the parametersMaxHeapFreeRatio (default value is 70%) andMinHeapFreeRatio (default value is 40%) with the command-line options-XX:MaxHeapFreeRatio and-XX:MinHeapFreeRatio. LoweringMaxHeapFreeRatio to as low as 10% andMinHeapFreeRatio to 5% has successfully reduced the heap size without too much performance regression; however, results may vary greatly depending on your application. Try different values for these parameters until they’re as low as possible, yet still retain acceptable performance.
-XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5Customers trying to keep the heap small should also add the option-XX:-ShrinkHeapInSteps. SeePerformance Tuning Examples for a description of using this option to keep the Java heap small by reducing the dynamic footprint for embedded applications.
-XX:NewRatio=ratioSets the ratio between young and old generation sizes. By default, this option is set to 2. The following example shows how to set the young-to-old ratio to 1:
-XX:NewRatio=1-XX:NewSize=sizeSets the initial size (in bytes) of the heap for the young generation (nursery). Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes.
The young generation region of the heap is used for new objects. GC is performed in this region more often than in other regions. If the size for the young generation is too low, then a large number of minor GCs are performed. If the size is too high, then only full GCs are performed, which can take a long time to complete. Oracle recommends that you keep the size for the young generation greater than 25% and less than 50% of the overall heap size.
The following examples show how to set the initial size of the young generation to 256 MB by using various units:
-XX:NewSize=256m-XX:NewSize=262144k-XX:NewSize=268435456The-XX:NewSize option is equivalent to-Xmn.
-XX:ParallelGCThreads=threadsSets the value of the stop-the-world (STW) worker threads. This option sets the value ofthreads to the number of logical processors. The value ofthreads is the same as the number of logical processors up to a value of 8.
If there are more than 8 logical processors, then this option sets the value ofthreads to approximately 5/8 of the logical processors. This works in most cases except for larger SPARC systems where the value ofthreads can be approximately 5/16 of the logical processors.
The default value depends on the number of CPUs available to the JVM.
For example, to set the number of threads for parallel GC to 2, specify the following option:
-XX:ParallelGCThreads=2-XX:+ParallelRefProcEnabledEnables parallel reference processing. By default, this option is disabled.
-XX:+PrintAdaptiveSizePolicyEnables printing of information about adaptive-generation sizing. By default, this option is disabled.
-XX:+ScavengeBeforeFullGCEnables GC of the young generation before each full GC. This option is enabled by default. Oracle recommends that youdon’t disable it, because scavenging the young generation before a full GC can reduce the number of objects reachable from the old generation space into the young generation space. To disable GC of the young generation before each full GC, specify the option-XX:-ScavengeBeforeFullGC.
-XX:-ShrinkHeapInStepsIncrementally reduces the Java heap to the target size, specified by the option–XX:MaxHeapFreeRatio. This option is enabled by default. If disabled, then it immediately reduces the Java heap to the target size instead of requiring multiple garbage collection cycles. Disable this option if you want to minimize the Java heap size. You will likely encounter performance degradation when this option is disabled.
SeePerformance Tuning Examples for a description of using theMaxHeapFreeRatio option to keep the Java heap small by reducing the dynamic footprint for embedded applications.
–XX:StringDeduplicationAgeThreshold=thresholdIdentifiesString objects reaching the specified age that are considered candidates for deduplication. An object's age is a measure of how many times it has survived garbage collection. This is sometimes referred to as tenuring. See the deprecated-XX:+PrintTenuringDistribution option.
Note:
String objects that are promoted to an old heap region before this age has been reached are always considered candidates for deduplication. The default value for this option is3. See the-XX:+UseStringDeduplication option.
-XX:SurvivorRatio=ratioSets the ratio between eden space size and survivor space size. By default, this option is set to 8. The following example shows how to set the eden/survivor space ratio to 4:
-XX:SurvivorRatio=4-XX:TargetSurvivorRatio=percentSets the desired percentage of survivor space (0 to 100) used after young garbage collection. By default, this option is set to 50%.
The following example shows how to set the target survivor space ratio to 30%:
-XX:TargetSurvivorRatio=30-XX:TLABSize=sizeSets the initial size (in bytes) of a thread-local allocation buffer (TLAB). Append the letterk orK to indicate kilobytes,m orM to indicate megabytes, andg orG to indicate gigabytes. If this option is set to 0, then the JVM selects the initial size automatically.
The following example shows how to set the initial TLAB size to 512 KB:
-XX:TLABSize=512k-XX:+UseAdaptiveSizePolicyEnables the use of adaptive generation sizing. This option is enabled by default. To disable adaptive generation sizing, specify-XX:-UseAdaptiveSizePolicy and set the size of the memory allocation pool explicitly. See the-XX:SurvivorRatio option.
-XX:+UseCMSInitiatingOccupancyOnlyEnables the use of the occupancy value as the only criterion for initiating the CMS collector. By default, this option is disabled and other criteria may be used.
-XX:+UseG1GCEnables the use of the garbage-first (G1) garbage collector. It’s a server-style garbage collector, targeted for multiprocessor machines with a large amount of RAM. This option meets GC pause time goals with high probability, while maintaining good throughput. The G1 collector is recommended for applications requiring large heaps (sizes of around 6 GB or larger) with limited GC latency requirements (a stable and predictable pause time below 0.5 seconds). By default, this option is enabled and G1 is used as the default garbage collector.
-XX:+UseGCOverheadLimitEnables the use of a policy that limits the proportion of time spent by the JVM on GC before anOutOfMemoryError exception is thrown. This option is enabled, by default, and the parallel GC will throw anOutOfMemoryError if more than 98% of the total time is spent on garbage collection and less than 2% of the heap is recovered. When the heap is small, this feature can be used to prevent applications from running for long periods of time with little or no progress. To disable this option, specify the option-XX:-UseGCOverheadLimit.
-XX:+UseNUMAEnables performance optimization of an application on a machine with nonuniform memory architecture (NUMA) by increasing the application's use of lower latency memory. By default, this option is disabled and no optimization for NUMA is made. The option is available only when the parallel garbage collector is used (-XX:+UseParallelGC).
-XX:+UseParallelGCEnables the use of the parallel scavenge garbage collector (also known as the throughput collector) to improve the performance of your application by leveraging multiple processors.
By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM. If it’s enabled, then the-XX:+UseParallelOldGC option is automatically enabled, unless you explicitly disable it.
-XX:+UseParallelOldGCEnables the use of the parallel garbage collector for full GCs. By default, this option is disabled. Enabling it automatically enables the-XX:+UseParallelGC option.
-XX:+UseSerialGCEnables the use of the serial garbage collector. This is generally the best choice for small and simple applications that don’t require any special functionality from garbage collection. By default, this option is disabled and the collector is selected automatically based on the configuration of the machine and type of the JVM.
-XX:+UseSHMLinux only: Enables the JVM to use shared memory to set up large pages.
SeeLarge Pages for setting up large pages.
-XX:+UseStringDeduplicationEnables string deduplication. By default, this option is disabled. To use this option, you must enable the garbage-first (G1) garbage collector.
String deduplication reduces the memory footprint ofString objects on the Java heap by taking advantage of the fact that manyString objects are identical. Instead of eachString object pointing to its own character array, identicalString objects can point to and share the same character array.
-XX:+UseTLABEnables the use of thread-local allocation blocks (TLABs) in the young generation space. This option is enabled by default. To disable the use of TLABs, specify the option-XX:-UseTLAB.
Deprecated Java Options
Thesejava options aredeprecated and might be removed in a future JDK release. They’re still accepted and acted upon, but a warning is issued when they’re used.
-Xloggc:filenameSets the file to which verbose GC events information should be redirected for logging. The information written to this file is similar to the output of-verbose:gc with the time elapsed since the first GC event preceding each logged event. The-Xloggc option overrides-verbose:gc if both are given with the samejava command.
Example:
-Xlog:gc:garbage-collection.log-XX:CMSInitiatingOccupancyFraction=percentSets the percentage of the old generation occupancy (0 to 100) at which to start a CMS collection cycle. The default value is set to -1. Any negative value (including the default) implies that the option-XX:CMSTriggerRatio is used to define the value of the initiating occupancy fraction.
The following example shows how to set the occupancy fraction to 20%:
-XX:CMSInitiatingOccupancyFraction=20-XX:CMSInitiatingPermOccupancyFraction=percentSets the percentage of the permanent generation occupancy (0 to 100) at which to start a GC. This option was deprecated in JDK 8 with no replacement.
-XX:+PrintStringDeduplicationStatisticsPrinted detailed deduplication statistics. By default, this option is disabled. See the-XX:+UseStringDeduplication option.
-XX:+PrintTenuringDistributionEnables printing of tenuring age information. The following is an example of the output:
Desired survivor size 48286924 bytes, new threshold 10 (max 10)- age 1: 28992024 bytes, 28992024 total- age 2: 1366864 bytes, 30358888 total- age 3: 1425912 bytes, 31784800 total...Age 1 objects are the youngest survivors (they were created after the previous scavenge, survived the latest scavenge, and moved from eden to survivor space). Age 2 objects have survived two scavenges (during the second scavenge they were copied from one survivor space to the next). This pattern is repeated for all objects in the output.
In the preceding example, 28,992,024bytes survived one scavenge and were copied from eden to survivor space, 1,366,864 bytes are occupied by age 2 objects, and so on. The third value in each row is the cumulative size of objects of agen or less.
By default, this option is disabled.
-XX:SoftRefLRUPolicyMSPerMB=timeSets the amount of time (in milliseconds) a softly reachable object is kept active on the heap after the last time it was referenced. The default value is one second of lifetime per free megabyte in the heap. The-XX:SoftRefLRUPolicyMSPerMB option accepts integer values representing milliseconds per one megabyte of the current heap size (for Java HotSpot Client VM) or the maximum possible heap size (for Java HotSpot Server VM). This difference means that the Client VM tends to flush soft references rather than grow the heap, whereas the Server VM tends to grow the heap rather than flush soft references. In the latter case, the value of the-Xmx option has a significant effect on how quickly soft references are garbage collected.
The following example shows how to set the value to 2.5 seconds:
-XX:SoftRefLRUPolicyMSPerMB=2500-XX:+TraceClassLoadingEnables tracing of classes as they are loaded. By default, this option is disabled and classes aren’t traced.
The replacement Unified Logging syntax is-Xlog:class+load=level. SeeEnable Logging with the JVM Unified Logging Framework
Uselevel=info for regular information, orlevel=debug for additional information. In Unified Logging syntax,-verbose:class equals-Xlog:class+load=info,class+unload=info..
-XX:+TraceClassLoadingPreorderEnables tracing of all loaded classes in the order in which they’re referenced. By default, this option is disabled and classes aren’t traced.
The replacement Unified Logging syntax is-Xlog:class+preorder=debug. SeeEnable Logging with the JVM Unified Logging Framework.
-XX:+TraceClassResolutionEnables tracing of constant pool resolutions. By default, this option is disabled and constant pool resolutions aren’t traced.
The replacement Unified Logging syntax is-Xlog:class+resolve=debug. SeeEnable Logging with the JVM Unified Logging Framework.
-XX:+TraceLoaderConstraintsEnables tracing of the loader constraints recording. By default, this option is disabled and loader constraints recording isn’t traced.
The replacement Unified Logging syntax is-Xlog:class+loader+constraints=info. SeeEnable Logging with the JVM Unified Logging Framework.
-XX:+UseConcMarkSweepGCEnables the use of the CMS garbage collector for the old generation. CMS is an alternative to the default garbage collector (G1), which also focuses on meeting application latency requirements. By default, this option is disabled and the collector is selected automatically based on the configuration of the machine and type of the JVM. The CMS garbage collector is deprecated.
-XX:+UseParNewGCEnables the use of parallel threads for collection in the young generation. By default, this option is disabled. It’s automatically enabled when you set the-XX:+UseConcMarkSweepGC option. Using the-XX:+UseParNewGC option without the-XX:+UseConcMarkSweepGC option was deprecated in JDK 8. All uses of the-XX:+UseParNewGC option are deprecated. Using the option without-XX:+UseConcMarkSweepGC isn’t possible.
-XX:+UseSplitVerifierEnables splitting the verification process. By default, this option was enabled in the previous releases, and verification was split into two phases: type referencing (performed by the compiler) and type checking (performed by the JVM runtime). Verification is now split by default without a way to disable it.
Obsolete Java Options
Thesejava options are still accepted but ignored, and a warning is issued when they’re used.
-XX:+AggressiveOptsEnables the use of aggressive performance optimization features, which are expected to become default in upcoming releases. By default, this option is disabled and experimental performance features are not used.
-XX:+CheckEndorsedAndExtDirsEnabled the option to prevent thejava command from running a Java application if any of the following directories existed and wasn't empty:
lib/endorsed
lib/ext
The systemwide platform-specific extension directory
The endorsed standards override mechanism and the extension mechanism are no longer supported.
-XX:MaxPermSize=sizeSets the maximum permanent generation space size (in bytes). This option was deprecated in JDK 8 and superseded by the-XX:MaxMetaspaceSize option.
-XX:PermSize=sizeSets the space (in bytes) allocated to the permanent generation that triggers a garbage collection if it’s exceeded. This option was deprecated in JDK 8 and superseded by the-XX:MetaspaceSize option.
-XX:+UseAppCDSSupport for archiving and sharing non-system classes is now enabled automatically if the application classes or platform classes are present in the classlist and the shared archive is generated with-Xshare:dump/auto/on. The following customized warning message is issued, which differs slightly from the standard warning used for an obsolete flag:
Java HotSpot(TM) 64-Bit Server VM warning: Ignoring obsolete optionUseAppCDS; AppCDS is automatically enabled
Removed Java Options
java options have been removed in JDK 11 and using them results in an error of:Unrecognized VM optionoption-name-XX:+ResourceManagementNo longer supported. Enabled the use of Resource Management during the runtime of the application.
-XX:ResourceManagementSampleInterval=value_in_millisecondsNo longer supported. Set the parameter that controlled the sampling interval for Resource Management measurements, in milliseconds.
This option was only used when Resource Management was enabled (that is, the-XX:+ResourceManagement option is specified).
You can shorten or simplify thejava command by using@argument_files to specify one or more text files that contain arguments, such as options and class names, which are passed to thejava command. This let’s you to createjava commands of any length on any operating system.
In the command line, use the at sign (@) prefix to identify an argument file that containsjava options and class names. When thejava command encounters a file beginning with the at sign (@), it expands the contents of that file into an argument list just as they would be specified on the command line.
Thejava launcher expands the argument file contents until it encounters the-Xdisable-@files option. You can use the-Xdisable-@files option anywhere on the command line, including in an argument file, to stop@argument_files expansion.
The following items describe the syntax ofjava argument files:
The argument file must contain only ASCII characters or characters in system default encoding that’s ASCII friendly, such as UTF-8.
The argument file size must not exceed MAXINT (2,147,483,647) bytes.
The launcher doesn’t expand wildcards that are present within an argument file.
Use white space or new line characters to separate arguments included in the file.
White space includes a white space character,\t,\n,\r, and\f.
For example, it is possible to have a path with a space, such asc:\Program Files that can be specified as either "c:\\Program Files" or, to avoid an escape,c:\Program" "Files.
Any option that contains spaces, such as a path component, must be within quotation marks using quotation ('"') characters in its entirety.
A string within quotation marks may contain the characters\n,\r,\t, and\f. They are converted to their respective ASCII codes.
If a file name contains embedded spaces, then put the whole file name in double quotation marks.
File names in an argument file are relative to the current directory, not to the location of the argument file.
Use the number sign (#) in the argument file to identify comments. All characters following the# are ignored until the end of line.
Additional at sign (@) prefixes to@ prefixed options act as an escape (the first@ is removed and the rest of the arguments are presented to the launcher literally).
Lines may be continued using the continuation character (\) at the end-of-line. The two lines are concatenated with the leading white spaces trimmed. To prevent trimming the leading white spaces, a continuation character (\) may be placed at the first column.
Because backslash (\) is an escape character, a backslash character must be escaped with another backslash character.
Partial quote is allowed and is closed by an end-of-file.
An open quote stops at end-of-line unless\ is the last character, which then joins the next line by removing all leading white space characters.
Wildcards (*) aren’t allowed in these lists (such as specifying*.java).
Use of the at sign (@) to recursively interpret files isn’t supported.
Example of Open or Partial Quotes in an Argument File
In the argument file,
-cp "lib/cool/app/jarsthis is interpreted as:
-cp lib/cool/app/jars Example of a Backslash Character Escaped with Another Backslash Character in an Argument File
To output the following:
-cp c:\Program Files (x86)\Java\jre\lib\ext;c:\Program Files\Java\jre9\lib\ext
The backslash character must be specified in the argument file as:
-cp "c:\\Program Files (x86)\\Java\\jre\\lib\\ext;c:\\Program Files\\Java\\jre9\\lib\\ext"
Example of an EOL Escape Used to Force Concatenation of Lines in an Argument File
In the argument file,
-cp "/lib/cool app/jars:\ /lib/another app/jars"This is interpreted as:
-cp /lib/cool app/jars:/lib/another app/jars Example of Line Continuation with Leading Spaces in an Argument File
In the argument file,
-cp "/lib/cool\ \app/jars”This is interpreted as:
-cp /lib/cool app/jars
Examples of Using Single Argument File
You can use a single argument file, such asmyargumentfile in the following example, to hold all requiredjava arguments:
java @myargumentfileExamples of Using Argument Files with Paths
You can include relative paths in argument files; however, they’re relative to the current working directory and not to the paths of the argument files themselves. In the following example,path1/options andpath2/options represent argument files with different paths. Any relative paths that they contain are relative to the current working directory and not to the argument files:
java @path1/options @path2/classesWhy was the JIT turned off and then on again and again?
Where has all the code heap space gone?
Why is the method sweeper not working effectively?
To provide this insight, a code heap state analytics feature has been implemented that enables on-the-fly analysis of the code heap. The analytics process is divided into two parts. The first part examines the entire code heap and aggregates all information that is believed to be useful or important. The second part consists of several independent steps that print the collected information with an emphasis on different aspects of the data. Data collection and printing are done on an "on request" basis.
Syntax
jcmdpid Compiler.CodeHeap_Analytics [function] [granularity]-Xlog:codecache=Trace-Xlog:codecache=DebugSeeCodeHeap State Analytics (OpenJDK) for a detailed description of the code heap state analytics feature, the supported functions, and the granularity options.
You use the-Xlog option to configure or enable logging with the Java Virtual Machine (JVM) unified logging framework.
Synopsis
-Xlog[:[what][:[output][:[decorators][:output-options[,...]]]]]whatSpecifies a combination of tags and levels of the formtag1[+tag2...][*][=level][,...]. Unless the wildcard (*) is specified, only log messages tagged with exactly the tags specified are matched. See-Xlog Tags and Levels.
outputSets the type of output. Omitting theoutput type defaults tostdout. See-Xlog Output.
decoratorsConfigures the output to use a custom set of decorators. Omittingdecorators defaults touptime,level, andtags. SeeDecorations.
output-optionsSets the-Xlog logging output options.
Description
The Java Virtual Machine (JVM) unified logging framework provides a common logging system for all components of the JVM. GC logging for the JVM has been changed to use the new logging framework. The mapping of old GC flags to the corresponding new Xlog configuration is described inConvert GC Logging Flags to Xlog. In addition, runtime logging has also been changed to use the JVM unified logging framework. The mapping of legacy runtime logging flags to the corresponding new Xlog configuration is described inConvert Runtime Logging Flags to Xlog.
The following provides quick reference to the-Xlog command and syntax for options:
-XlogEnables JVM logging on aninfo level.
-Xlog:helpPrints-Xlog usage syntax and available tags, levels, and decorators along with example command lines with explanations.
-Xlog:disableTurns off all logging and clears all configuration of the logging framework including the default configuration for warnings and errors.
-Xlog[:option]Applies multiple arguments in the order that they appear on the command line. Multiple-Xlog arguments for the same output override each other in their given order.
option is set as:[tag selection][:[output][:[decorators][:output-options]]] Omitting thetag selection defaults to a tag-set ofall and a level ofinfo.
tag[+...] allTheall tag is a meta tag consisting of all tag-sets available. The asterisk* in a tag set definition denotes a wildcard tag match. Matching with a wildcard selects all tag sets that containat least the specified tags. Without the wildcard, only exact matches of the specified tag sets are selected.
output_options isfilecount=file-count filesize=file size with optional K, M or G suffixDefault Configuration
When the-Xlog option and nothing else is specified on the command line, the default configuration is used. The default configuration logs all messages with a level that matches either the warning or error regardless of what tags the message is associated with. The default configuration is equivalent to entering the following on the command line:
-Xlog:all=warning:stdout:uptime,level,tagsControlling Logging at Runtime
Logging can also be controlled at run time through Diagnostic Commands (with thejcmd utility). Everything that can be specified on the command line can also be specified dynamically with theVM.log command. As the diagnostic commands are automatically exposed as MBeans, you can use JMX to change logging configuration at run time.
-Xlog Tags and Levels
Each log message has a level and a tag set associated with it. The level of the message corresponds to its details, and the tag set corresponds to what the message contains or which JVM component it involves (such as, GC, compiler, or threads). Mapping GC flags to the Xlog configuration is described inConvert GC Logging Flags to Xlog. Mapping legacy runtime logging flags to the corresponding Xlog configuration is described inConvert Runtime Logging Flags to Xlog.
off
trace
debug
info
warning
error
all instead of a tag combination matches all tag combinations.add
age
alloc
annotation
aot
arguments
attach
barrier
biasedlocking
blocks
bot
breakpoint
bytecode
census
class
classhisto
cleanup
compaction
comparator
constraints
constantpool
coops
cpu
cset
data
defaultmethods
dump
ergo
event
exceptions
exit
fingerprint
freelist
gc
hashtables
heap
humongous
ihop
iklass
init
itables
jfr
jni
jvmti
liveness
load
loader
logging
mark
marking
metadata
metaspace
method
mmu
modules
monitorinflation
monitormismatch
nmethod
normalize
objecttagging
obsolete
oopmap
os
pagesize
parser
patch
path
phases
plab
preorder
promotion
protectiondomain
purge
redefine
ref
refine
region
remset
resolve
safepoint
scavenge
scrub
setting
stackmap
stacktrace
stackwalk
start
startuptime
state
stats
stringdedup
stringtable
subclass
survivor
sweep
system
task
thread
time
timer
tlab
unload
update
verification
verify
vmoperation
vtables
workgang
The following table describes a list of the possible combination of a tags along with log levels.
| Log Tags | Description |
|---|---|
-Xlog:gc | Prints thegc information along with time at which the garbage collection occurred. |
-Xlog:gc* | Prints log messages that include at least |
-Xlog:gc*=trace | Prints the lowest level ofgc logging information. The output displays allgc related tags with detailed logging information. |
-Xlog:gc+phases=debug | Prints different |
-Xlog:gc+heap=debug | Prints |
-Xlog:safepoint | Prints details about application concurrent time and application stop time at the same level. |
-Xlog:gc+ergo*=trace | Prints combination of both |
-Xlog:gc+age=trace | Prints the survivor size and |
-Xlog:gc*:file=<file>::filecount=<count>,filesize=<filesize in kb> | Redirects the output to the file, specifies the number of files you want to use and the size of the file inkb. |
-Xlog Output
The-Xlog option supports the following types of outputs:
stdout — Sends output to stdout
stderr — Sends output to stderr
file=filename — Sends output to text file(s).
When usingfile=filename, specifying%p and/or%t in the file name expands to the JVM's PID and startup timestamp, respectively. You can also configure text files to handle file rotation based on file size and a number of files to rotate. For example, to rotate the log file every 10 MB and keep 5 files in rotation, specify the optionsfilesize=10M, filecount=5. The target size of the files isn’t guaranteed to be exact, it’s just an approximate value. Files are rotated by default with up to 5 rotated files of target size 20 MB, unless configured otherwise. Specifyingfilecount=0 means that the log file shouldn’t be rotated. There’s a possibility of the pre-existing log file getting overwritten.
Decorations
[6.567s][info][gc,old] Old collection completeOmittingdecorators defaults touptime,level, andtags. Thenone decorator is special and is used to turn off all decorations.
time (t),utctime (utc),uptime (u),timemillis (tm),uptimemillis (um),timenanos (tn),uptimenanos (un),hostname (hn),pid (p),tid (ti),level (l),tags (tg) decorators can also be specified asnone for no decoration.
Table 2-1 Possible Logging Message Decorations
| Decorations | Description |
|---|---|
time ort | Current time and date in ISO-8601 format. |
utctime orutc | Universal Time Coordinated or Coordinated Universal Time. |
uptime oru | Time since the start of the JVM in seconds and milliseconds. For example, 6.567s. |
timemillis ortm | The same value as generated by |
uptimemillis orum | Milliseconds since the JVM started. |
timenanos ortn | The same value generated by |
uptimenanos orun | Nanoseconds since the JVM started. |
hostname orhn | The host name. |
pid orp | The process identifier. |
tid orti | The thread identifier. |
level orl | The level associated with the log message. |
tags ortg | The tag-set associated with the log message. |
Convert GC Logging Flags to Xlog
Table 2-2 Mapping Legacy Garbage Collection Logging Flags to the Xlog Configuration
| Legacy Garbage Collection (GC) Flag | Xlog Configuration | Comment |
|---|---|---|
G1PrintHeapRegions |
| Not Applicable |
GCLogFileSize | No configuration available | Log rotation is handled by the framework. |
NumberOfGCLogFiles | Not Applicable | Log rotation is handled by the framework. |
PrintAdaptiveSizePolicy |
| Use a |
PrintGC |
| Not Applicable |
PrintGCApplicationConcurrentTime |
| Note that |
PrintGCApplicationStoppedTime |
| Note that |
PrintGCCause | Not Applicable | GC cause is now always logged. |
PrintGCDateStamps | Not Applicable | Date stamps are logged by the framework. |
PrintGCDetails |
| Not Applicable |
PrintGCID | Not Applicable | GC ID is now always logged. |
PrintGCTaskTimeStamps |
| Not Applicable |
PrintGCTimeStamps | Not Applicable | Time stamps are logged by the framework. |
PrintHeapAtGC |
| Not Applicable |
PrintReferenceGC |
| Note that in the old logging, |
PrintStringDeduplicationStatistics |
| Not Applicable |
PrintTenuringDistribution |
| Use a |
UseGCLogFileRotation | Not Applicable | What was logged for |
Convert Runtime Logging Flags to Xlog
Table 2-3 Mapping Runtime Logging Flags to the Xlog Configuration
| Legacy Runtime Flag | Xlog Configuration | Comment |
|---|---|---|
TraceExceptions |
| Not Applicable |
TraceClassLoading |
| Use |
TraceClassLoadingPreorder |
| Not Applicable |
TraceClassUnloading |
| Use |
VerboseVerification |
| Not Applicable |
TraceClassPaths |
| Not Applicable |
TraceClassResolution |
| Not Applicable |
TraceClassInitialization |
| Not Applicable |
TraceLoaderConstraints |
| Not Applicable |
TraceClassLoaderData |
| Use |
TraceSafepointCleanupTime |
| Not Applicable |
TraceSafepoint |
| Not Applicable |
TraceMonitorInflation |
| Not Applicable |
TraceBiasedLocking |
| Use |
TraceRedefineClasses |
| Use |
-Xlog Usage Examples
The following are-Xlog examples.
-XlogLogs all messages by using theinfo level tostdout withuptime,levels, andtags decorations. This is equivalent to using:
-Xlog:all=info:stdout:uptime,levels,tags-Xlog:gcLogs messages tagged with thegc tag usinginfo level tostdout. The default configuration for all other messages at levelwarning is in effect.
-Xlog:gc,safepointLogs messages tagged either with thegc orsafepoint tags, both using theinfo level, tostdout, with default decorations. Messages tagged with bothgc andsafepoint won’t be logged.
-Xlog:gc+ref=debugLogs messages tagged with bothgc andref tags, using thedebug level tostdout, with default decorations. Messages tagged only with one of the two tags won’t be logged.
-Xlog:gc=debug:file=gc.txt:noneLogs messages tagged with thegc tag using thedebug level to a file calledgc.txt with no decorations. The default configuration for all other messages at levelwarning is still in effect.
-Xlog:gc=trace:file=gctrace.txt:uptimemillis,pids:filecount=5,filesize=1024Logs messages tagged with thegc tag using thetrace level to a rotating file set with 5 files with size 1 MB with the base namegctrace.txt and uses decorationsuptimemillis andpid.
The default configuration for all other messages at levelwarning is still in effect.
-Xlog:gc::uptime,tidLogs messages tagged with thegc tag using the default 'info' level to default the outputstdout and uses decorationsuptime andtid. The default configuration for all other messages at levelwarning is still in effect.
-Xlog:gc*=info,safepoint*=offLogs messages tagged with at leastgc using theinfo level, but turns off logging of messages tagged withsafepoint. Messages tagged with bothgc andsafepoint won’t be logged.
-Xlog:disable -Xlog:safepoint=trace:safepointtrace.txtTurns off all logging, including warnings and errors, and then enables messages tagged withsafepoint usingtrace level to the filesafepointtrace.txt. The default configuration doesn’t apply, because the command line started with-Xlog:disable.
Complex -Xlog Usage Examples
The following describes a few complex examples of using the-Xlog option.
-Xlog:gc+class*=debugLogs messages tagged with at leastgc andclass tags using thedebug level tostdout. The default configuration for all other messages at the levelwarning is still in effect
-Xlog:gc+meta*=trace,class*=off:file=gcmetatrace.txtLogs messages tagged with at least thegc andmeta tags using thetrace level to the filemetatrace.txt but turns off all messages tagged withclass. Messages tagged withgc,meta, andclass aren’t be logged becauseclass* is set to off. The default configuration for all other messages at levelwarning is in effect except for those that includeclass.
-Xlog:gc+meta=traceLogs messages tagged with exactly thegc andmeta tags using thetrace level tostdout. The default configuration for all other messages at levelwarning is still in effect.
-Xlog:gc+class+heap*=debug,meta*=warning,threads*=offLogs messages tagged with at leastgc,class, andheap tags using thetrace level tostdout but only log messages tagged withmeta with level. The default configuration for all other messages at the levelwarning is in effect except for those that includethreads.
You use values provided to all Java Virtual Machine (JVM) command-line flags for validation and, if the input value is invalid or out-of-range, then an appropriate error message is displayed.
java.lang.management) the values provided to all Java Virtual Machine (JVM) command-line flags are validated. Ergonomics are described inJava Platform, Standard Edition HotSpot Virtual Machine Garbage Collection Tuning Guide.Range and constraints are validated either when all flags have their values set during JVM initialization or a flag’s value is changed during runtime (for example using thejcmd tool). The JVM is terminated if a value violates either the range or constraint check and an appropriate error message is printed on the error stream.
java -XX:AllocatePrefetchStyle=5 -version intx AllocatePrefetchStyle=5 is outside the allowed range [ 0 ... 3 ] Improperly specified VM option 'AllocatePrefetchStyle=5' Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. The flag-XX:+PrintFlagsRanges prints the range of all the flags. This flag allows automatic testing of the flags by the values provided by the ranges. For the flags that have the ranges specified, the type, name, and the actual range is printed in the output.
intx ThreadStackSize [ 0 ... 9007199254740987 ] {pd product}For the flags that don’t have the range specified, the values aren’t displayed in the print out. For example,:size_t NewSize [ ... ] {product}This helps to identify the flags that need to be implemented. The automatic testing framework can skip those flags that don’t have values and aren’t implemented.You use large pages, also known as huge pages, as memory pages that are significantly larger than the standard memory page size (which varies depending on the processor and operating system). Large pages optimize processor Translation-Lookaside Buffers.
A Translation-Lookaside Buffer (TLB) is a page translation cache that holds the most-recently used virtual-to-physical address translations. A TLB is a scarce system resource. A TLB miss can be costly because the processor must then read from the hierarchical page table, which may require multiple memory accesses. By using a larger memory page size, a single TLB entry can represent a larger memory range. This results in less pressure on a TLB, and memory-intensive applications may have better performance.
However, large pages page memory can negatively affect system performance. For example, when a large mount of memory is pinned by an application, it may create a shortage of regular memory and cause excessive paging in other applications and slow down the entire system. Also, a system that has been up for a long time could produce excessive fragmentation, which could make it impossible to reserve enough large page memory. When this happens, either the OS or JVM reverts to using regular pages.
Oracle Solaris, Linux, and Windows support large pages.
Large Pages Support for Oracle Solaris
Oracle Solaris 9 and later include Multiple Page Size Support (MPSS). No additional configuration is necessary.
Large Pages Support for Linux
The 2.6 kernel supports large pages. Some vendors have backported the code to their 2.4-based releases. To check if your system can support large page memory, try the following:
# cat /proc/meminfo | grep HugeHugePages_Total: 0HugePages_Free: 0Hugepagesize: 2048 kBIf the output shows the three "Huge" variables, then your system can support large page memory but it needs to be configured. If the command prints nothing, then your system doesn’t support large pages. To configure the system to use large page memory, login asroot, and then follow these steps:
If you’re using the option-XX:+UseSHM (instead of-XX:+UseHugeTLBFS), then increase theSHMMAX value. It must be larger than the Java heap size. On a system with 4 GB of physical RAM (or less), the following makes all the memory sharable:
# echo 4294967295 > /proc/sys/kernel/shmmaxIf you’re using the option-XX:+UseSHM or-XX:+UseHugeTLBFS, then specify the number of large pages. In the following example, 3 GB of a 4 GB system are reserved for large pages (assuming a large page size of 2048kB, then 3 GB = 3 * 1024 MB = 3072 MB = 3072 * 1024 kB = 3145728 kB and 3145728 kB / 2048 kB = 1536):
# echo 1536 > /proc/sys/vm/nr_hugepagesNote:
The values contained in/proc reset after you reboot your system, so you might want to set them in an initialization script (for example,rc.local orsysctl.conf).
If you configure (or resize) the OS kernel parameters/proc/sys/kernel/shmmax or/proc/sys/vm/nr_hugepages, Java processes may allocate large pages for areas in addition to the Java heap. These steps can allocate large pages for the following areas:
Java heap
Code cache
The marking bitmap data structure for the parallel GC
Consequently, if you configure thenr_hugepages parameter to the size of the Java heap, then the JVM can fail in allocating the code cache areas on large pages because these areas are quite large in size.
Large Pages Support for Windows
To use large pages support on Windows, the administrator must first assign additional privileges to the user who is running the application:
SelectControl Panel,Administrative Tools, and thenLocal Security Policy.
SelectLocal Policies and thenUser Rights Assignment.
Double-clickLock pages in memory, then add users and/or groups.
Reboot your system.
Note that these steps are required even if it’s the administrator who’s running the application, because administrators by default don’t have the privilege to lock pages in memory.
Application Class Data Sharing (AppCDS) extends class data sharing (CDS) to enable application classes to be placed in a shared archive.
In addition to the core library classes, AppCDS supportsClass Data Sharing from the following locations:
Platform classes from the runtime image
Application classes from the runtime image
Application classes from the class path
Application classes from the module path
Archiving application classes provides better start up time at runtime. When running multiple JVM processes, AppCDS also reduces the runtime footprint with memory sharing for read-only metadata.
CDS/AppCDS supports archiving classes from JAR files only.
Prior to JDK 11, a non-empty directory was reported as a fatal error in the following conditions:
For base CDS, a non-empty directory cannot exist in the-Xbootclasspath/a path
With-XX:+UseAppCDS, a non-empty directory could not exist in the-Xbootclasspath/a path, class path, and module path.
In JDK 11 and later,-XX:+UseAppCDS is obsolete and the behavior for a non-empty directory is based on the class types in the classlist. A non-empty directory is reported as a fatal error in the following conditions:
If application classes or platform classes are not loaded, dump time only reports an error if a non-empty directory exists in-Xbootclasspath/a path
If application classes or platform classes are loaded, dump time reports an error for a non-empty directory that exists in-Xbootclasspath/a path, class path, or module path
In JDK 11 and later, using-XX:DumpLoadedClassList=<class_list_file results a generated classlist with all classes (both system library classes and application classes) included. You no longer have to specify-XX:+UseAppCDS with-XX:DumpLoadedClassList to produce a complete class list.
In JDK 11 and later, becauseUseAppCDS is obsolete,SharedArchiveFile becomes a product flag by default. Specifying+UnlockDiagnosticVMOptions forSharedArchiveFile is no longer needed in all configurations.
Preload Warning: Cannot findarray_nameAlthough an array in the class list is not allowed, some array classes can still be created at CDS/AppCDS dump time. Those arrays are created during the execution of the Java code used by the Java class loaders (PlatformClassLoader and the system class loader) to load classes at dump time. The created arrays are archived with the rest of the loaded classes.Extending Class Data Sharing to Support the Module Path
In JDK 11, Class Data Sharing (CDS) was improved to support archiving classes from the module path.
To create a CDS archive by using the--module-path VM option, use the following command line syntax:
$ java -Xshare:dump -XX:SharedClassListFile=class_list_file \ -XX:SharedArchiveFile=shared_archive_file \ --module-path=path_to_modular_jar -mmodule_nameTo run with a CDS archive using the--module-path VM option, use the following the command line syntax:
$ java -XX:SharedArchiveFile=shared_archive_file \ --module-path=path_to_modular_jar -mmodule_nameThe following table describes how the VM options related to module paths can be used along with the-Xshare option.
| Option | -Xshare:dump | -Xshare:{on,auto} |
|---|---|---|
--module-path1mp | Allowed | Allowed2 |
--module | Allowed | Allowed |
--add-module | Allowed | Allowed |
--upgrade-module-path3 | Disallowed (exits if specified) | Allowed (disables CDS) |
--patch-module4 | Disallowed (exits if specified) | Allowed (disables CDS) |
--limit-modules5 | Disallowed (exits if specified) | Allowed (disables CDS) |
1Although there are two ways of specifying a module in a--module-path, that is, modular JAR or exploded module, only modular JARs are supported.
2Differentmp can be specified during dump time versus run time. If an archived class K was loaded frommp1.jar at dump time, but changes inmp cause it to be available from a differentmp2.jar at run time, then the archived version of K will be disregarded at run time; K will be loaded dynamically.
3Currently, only two system modules are upgradeable (java.compiler andjdk.internal.vm.compiler). However, these modules are seldom upgraded in production software.
4As documented in JEP 261, using--patch-module is strongly discouraged for production use.
5--limit-modules is intended for testing purposes. It is seldom used in production software.
If--upgrade-module-path,--patch-module, or--limit-modules is specified at dump time, an error will be printed and the JVM will exit. For example, if the--limit-modules option is specified at dump time, the user will see the following error:
Error occurred during initialization of VMCannot use the following option when dumping the shared archive: --limit-modulesIf--upgrade-module-path,--patch-module, or--limit-modules is specified at run time, a warning message will be printed indicating that CDS is disabled. For example, if the--limit-modules options is specified at run time, the user will see the following warning:
Java HotSpot(TM) 64-Bit Server VM warning: CDS is disabled when the --limit-modules option is specified.Several other noteworthy things include:
Any valid combinations of-cp and--module-path are supported.
A non-empty directory in the module path causes a fatal error. The user will see the following error messages:
Error: non-empty directory <directory> Hint: enable -Xlog:class+path=info to diagnose the failure Error occurred during initialization of VM Cannot have non-empty directory in paths
Unlike the class path, there's no restriction that the module path at dump time must be equal to or be a prefix of the module path at run time.
The archive is invalidated if an existing JAR in the module path is updated after archive generation.
Removing a JAR from the module path does not invalidate the shared archive. Archived classes from the removed JAR are not used at runtime.
Creating a Shared Archive File and Using It to Run an Application
The following steps create a shared archive file that contains all the classes used by thetest.Hello application. The last step runs the application with the shared archive file.
Create a list of all classes used by thetest.Hello application. The following command creates a file namedhello.classlist that contains a list of all classes used by this application:
java -Xshare:off -XX:DumpLoadedClassList=hello.classlist -cp hello.jar test.HelloNote that the classpath specified by the-cp parameter must contain only JAR files.
Create a shared archive, namedhello.jsa, that contains all the classes inhello.classlist:
java -Xshare:dump -XX:SharedArchiveFile=hello.jsa -XX:SharedClassListFile=hello.classlist -cp hello.jarNote that the classpath used at archive creation time must be the same as (or a prefix of) the classpath used at run time.
Run the applicationtest.Hello with the shared archivehello.jsa:
java -XX:SharedArchiveFile=hello.jsa -cp hello.jar test.HelloOptional: Verify that thetest.Hello application is using the class contained in thehello.jsa shared archive:
java -XX:SharedArchiveFile=hello.jsa -cp hello.jar -verbose:class test.HelloThe output of this command should contain the following text:
Loaded test.Hello from shared objects file by sun/misc/Launcher$AppClassLoaderSharing a Shared Archive Across Multiple Application Processes
You can share the same archive file across multiple applications processes. This reduces memory usage because the archive is memory-mapped into the address space of the processes. The operating system automatically shares the read-only pages across these processes.
The following steps demonstrate how to create a common archive that can be shared by different applications. Only the classes fromcommon.jar are archived in thecommon.jsa (step 3). Classes fromhello.jar andhi.jar are not archived in this particular example because they are not in the classpath during the archiving step (step 3).
To include classes fromhello.jar andhi.jar, the.jar files must be added to the classpath specified by the-cp parameter.
Create a list of all classes used by theHello application and another list for theHi application:
java -XX:DumpLoadedClassList=hello.classlist -cp common.jar:hello.jar Hellojava -XX:DumpLoadedClassList=hi.classlist -cp common.jar:hi.jar HiCreate a single list of classes used by all the applications that will share the shared archive file.
Oracle Solaris, Linux, and macOS: The following commands combine the fileshello.classlist andhi.classlist into one file,common.classlist:
cat hello.classlist hi.classlist > common.classlistWindows: The following commands combine the fileshello.classlist andhi.classlist into one file,common.classlist:
type hello.classlist hi.classlist > common.classlistCreate a shared archive namedcommon.jsa that contains all the classes incommon.classlist:
java -Xshare:dump -XX:SharedArchiveFile=common.jsa -XX:SharedClassListFile=common.classlist -cp common.jar:hello.jar:hi.jarThe classpath parameter used is the common class path prefix shared by theHello andHi applications.
Run theHello andHi applications with the same shared archive:
java -XX:SharedArchiveFile=common.jsa -cp common.jar:hello.jar:hi.jar Hellojava -XX:SharedArchiveFile=common.jsa -cp common.jar:hello.jar:hi.jar HiSpecifying Additional Shared Data Added to an Archive File
TheSharedArchiveConfigFile option is used to specify additional shared data to add to the archive file.
-XX:SharedArchiveConfigFile=shared_config_fileJDK 9 and later supports adding both symbols and string objects to an archive for memory sharing when you have multiple JVM processes running on the same host. An example of this is having multiple JVM processes that use the same set of Java EE classes. When these common classes are loaded and used, new symbols and strings may be created and added to the JVM's internal "symbol" and "string" tables. At runtime, the symbols or string objects mapped from the archive file can be shared across multiple JVM processes, resulting in a reduction of overall memory usage. In addition, archiving strings also provides added performance benefits in both startup time and runtime execution.
In JDK 10 and later, CONSTANT_String entries in archived classes are resolved to interned String objects at dump time, and all interned String objects are archived. However, even though all CONSTANT_String literals in all archived classes are resolved, it might still beneficial to add additional strings that are not string literals in class files, but are likely to be used by your application at run time.
Symbol data should be generated by thejcmd tool attaching to a running JVM process. Seejcmd.
The following is an example of the symbol dumping command injcmd:
jcmdpid VM.symboltable -verboseNote:
The first line (process ID) and the second line ("@VERSION ...") of thisjcmd output should be excluded from the configuration file.
Example of a Configuration File
The following is an example of a configuration file:
VERSION: 1.0@SECTION: Symbol10 -1: linkMethodIn the configuration file example, the@SECTION: Symbol entry uses the following format:
lengthrefcount:symbol Therefcount for a shared symbol is always-1.
@SECTION specifies the type of the section that follows it. All data within the section must be the same type that's specified by@SECTION. Different types of data can’t be mixed. Multiple separated data sections for the same type specified by different@SECTION are allowed within oneshared_config_file .
You can use the Java advanced runtime options to optimize the performance of your applications.
Tuning for Higher Throughput
Use the following commands and advanced runtime options to achieve higher throughput performance for your application:
java -server -XX:+UseParallelGC -XX:+UseLargePages -Xmn10g -Xms26g -Xmx26gTuning for Lower Response Time
Use the following commands and advanced runtime options to achieve lower response times for your application:
java -XX:+UseG1GC -Xms26g Xmx26g -XX:MaxGCPauseMillis=500 -XX:+PrintGCTimeStampKeeping the Java Heap Small and Reducing the Dynamic Footprint of Embedded Applications
Use the following advanced runtime options to keep the Java heap small and reduce the dynamic footprint of embedded applications:
-XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5Note:
The defaults for these two options are 70% and 40% respectively. Because performance sacrifices can occur when using these small settings, you should optimize for a small footprint by reducing these settings as much as possible without introducing unacceptable performance degradation.
The following exit values are typically returned by the launcher when the launcher is called with the wrong arguments, serious errors, or exceptions thrown by the JVM. However, a Java application may choose to return any value by using the API callSystem.exit(exitValue). The values are:
0: Successful completion
>0: An error occurred