`

Java Options

阅读更多
摘自:http://blog.csdn.net/dingxy/archive/2008/12/03/3439267.aspx

Java Heap Size Options

You achieve best performance by individually tuning each of your applications. Configuring the JVM heap size options listed in Table 2-2 increases performance for most applications.

The options listed in Table 2-2 may differ depending on your architecture and operating system. See your vendor's documentation for platform-specific JVM tuning options.

Table 2-2 Java Heap Size Options

Task

Option

Description

Setting the New generation heap size

-XX:NewSize

Use this option to set the New generation Java heap size. Set this value to a multiple of 1024 that is greater than 1MB. As a general rule, set -XX:NewSize to be one-fourth the size of the maximum heap size. Increase the value of this option for larger numbers of short-lived objects.

Be sure to increase the New generation as you increase the number of processors. Memory allocation can be parallel, but garbage collection is not parallel.

Setting the maximum New generation heap size

-XX:MaxNewSize

Use this option to set the maximum New generation Java heap size. Set this value to a multiple of 1024 that is greater than 1MB.

Setting New heap size ratios

-XX:SurvivorRatio

The New generation area is divided into three sub-areas: Eden, and two survivor spaces that are equal in size.

Use the -XX:SurvivorRatio=X option to configure the ratio of the Eden/survivor space size. Try setting this value to 8 and then monitor your garbage collection.

Setting minimum heap size

-Xms

Use this option to set the minimum size of the memory allocation pool. Set this value to a multiple of 1024 that is greater than 1MB. As a general rule, set minimum heap size (-Xms) equal to the maximum heap size (-Xmx).

Setting maximum heap size

-Xmx

Use this option to set the maximum Java heap size. Set this value to a multiple of 1024 that is greater than 1MB.


Forcing Garbage Collection

Make sure that full garbage collection is necessary before forcing it on a server. When you force garbage collection, the JVM often examines every living object in the heap.

To use the Administration Console to force garbage collection on a specific server:

  1. On the Administration Console, click the server instance node in the left pane for the server whose memory usage you want to view. A dialog displays in the right pane showing the tabs associated with this instance.
  2. Click the Monitoring tab.
  3. Click the JVM tab.
  4. Check the Memory Usage graph for high usage.

    Note that the Memory Usage graph displays only for servers that are currently running.

  5. Click the Force Garbage Collection text link to force garbage collection.

    A message displays indicating that the collection operation was successful.


Setting Java HotSpot VM Options

You can use standard java options to improve performance. Be aware that how you use these options depends on how your application is coded. Although command line options are consistent across platforms, some platforms may have different defaults.

You need to test both your client and server JVMs and see what performs better for your particular application.

See Setting Non-Standard Java Command Line Options for more VM options that affect performance.

Standard Options for NT

For NT, WebLogic Server invokes the JVM via the java command. Use the options listed in listed in Table 2-3.

Table 2-3 Standard options for HotSpot VM on NT

Option

Description

-hotspot

Selects the Client HotSpot VM.

-server

Selects the server VM.

-classic

Selects the classic VM.

Standard Options for UNIX

For UNIX, the WebLogic Server invokes the JVM via the java command. Use the options listed in listed in Table 2-4.

Table 2-4 Standard options for HotSpot VM on UNIX

Option

Description

-client or -hotspot

Selects the Client HotSpot VM.

-server

Selects the server VM.


Setting Non-Standard Java Command Line Options

You can use non-standard java options to improve performance. Be aware that how you use these options depends on how your application is coded. Although command line options are consistent across platforms, some platforms may have different defaults.

Non-Standard Options for NT

Some examples of non-standard options for improving performance on the Hotspot VM on NT are listed in Table 2-5.

Table 2-5 Non-standard options for HotSpot VM on NT

Option

Description

-Xnoclassgc

This option disables garbage collection for the class, It prevents re-loading of the class when the class is referenced after all references to it have been lost. This option requires a greater heap size.

-oss

This option controls the Java thread stack size. Setting it too high (>2MB) severely degrades performance.

-ss

This option controls the native thread stack size. Setting it too high (>2MB) severely degrades performance.

-Xverbosegc:file=/tmp/gc$$.out

This option redirects -verbosegc messages to a file, allowing you to separate your garbage collection messages from the rest of the messages on stderr.

It also provides a performance advantage because writes to files are buffered better than writes to a character stream like stderr.

See also Turning On Verbose Garbage Collection and Redirecting Output.


===================================********========================================

java - the Java application launcher

SYNOPSIS

    java [ options ] class [ argument ... ]
java [ options ] -jar file.jar [ argument ... ]
options
Command-line options.
class
Name of the class to be invoked.
file.jar
Name of the jar file to be invoked. Used only with -jar.
argument
Argument passed to the main function.

DESCRIPTION

The java tool launches a Java application. It does this by starting a Java runtime environment, loading a specified class, and invoking that class's mainmethod. The method declaration must look like the following:
    public static void main(String args[])
The method must be declared public and static, it must not return any value, and it must accept a String array as a parameter. By default, the first non-option argument is the name of the class to be invoked. A fully-qualified class name should be used. If the -jar option is specified, the first non-option argument is the name of a JAR archive containing class and resource files for the application, with the startup class indicated by the Main-Classmanifest header.

The Java runtime searches for the startup class, and other classes used, in three sets of locations: the bootstrap class path, the installed extensions, and the user class path.

Non-option arguments after the class name or JAR file name are passed to the main function.

OPTIONS

The launcher has a set of standard options that are supported on the current runtime environment and will be supported in future releases. In addition, the current implementations of the virtual machines support a set of non-standard options options that are subject to change in future releases.

Standard Options

-client
Select the Java HotSpot Client VM. This is the default.
-server
Select the Java HotSpot Server VM.
-classpath classpath
-cp classpath
Specify a list of directories, JAR archives, and ZIP archives to search for class files. Class path entries are separated by colons (:). Specifying -classpath or -cp overrides any setting of the CLASSPATH environment variable.

If -classpath and -cp are not used and CLASSPATH is not set, the user class path consists of the current directory (.).

For more information on class paths, see Setting the Class Path.

-Dproperty=value
Set a system property value.
-jar
Execute a program encapsulated in a JAR file. The first argument is the name of a JAR file instead of a startup class name. In order for this option to work, the manifest of the JAR file must contain a line of the form Main-Class: classname. Here, classname identifies the class having thepublic static void main(String[] args) method that serves as your application's starting point. See the Jar tool reference page and the Jar trail of the Java Tutorial for information about working with Jar files and Jar-file manifests.

When you use this option, the JAR file is the source of all user classes, and other user class path settings are ignored.

On Solaris 8, JAR files that can be run with the "java -jar" option can have their execute permissions set so they can be run without using "java -jar".

-verbose
-verbose:class
Display information about each class loaded.
-verbose:gc
Report on each garbage collection event.
-verbose:jni
Report information about use of native methods and other Java Native Interface activity.
-version
Display version information and exit.
-showversion
Display version information and continue.
-?
-help
Display usage information and exit.
-X
Display information about non-standard options and exit.

Non-Standard Options

-Xint
Operate in interpreted-only mode. Compilation to native code is disabled, and all bytecodes are executed by the interpreter. The performance benefits offered by the Java HotSpot VMs' adaptive compiler will not be present in this mode.
-Xdebug
Start with the debugger enabled. Refer to jdb description for more details and an example.
-Xbootclasspath:bootclasspath
Specify a colon-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the Java 2 SDK. Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.
-Xbootclasspath/a:path
Specify a colon-separated path of directires, JAR archives, and ZIP archives to append to the default bootstrap class path.
-Xbootclasspath/p:path
Specify a colon-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.
-Xfuture
Perform strict class-file format checks. For purposes of backwards compatibility, the default format checks performed by the Java 2 SDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The -Xfuture flag turns on stricter class-file format checks that enforce closer conformance to the class-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
-Xnoclassgc
Disable class garbage collection.
-Xincgc
Enable the incremental garbage collector. The incremental garbage collector, which is off by default, will eliminate occasional garbage-collection pauses during program execution. However, it can lead to a roughly 10% decrease in overall GC performance.
-Xmsn
Specify the initial size, in bytes, of the memory allocation pool. This value must be a multiple of 1024 greater than 1MB. Append the letter k or Kto indicate kilobytes, or m or M to indicate megabytes. The default value is 2MB. Examples:
       -Xms6291456
-Xms6144k
-Xms6m
-Xmxn
Specify the maximum size, in bytes, of the memory allocation pool. This value must a multiple of 1024 greater than 2MB. Append the letter k orK to indicate kilobytes, or m or M to indicate megabytes. The default value is 64MB. The upper limit for this value will be approximately 4000m on Solaris 7 and Solaris 8 SPARC platforms and 2000m on Solaris 2.6 and x86 platforms, minus overhead amounts. Examples:
       -Xmx83886080
-Xmx81920k
-Xmx80m
-Xssn
Set thread stack size. Each Java thread has two stacks: one for Java code and one for C code. This option sets the maximum stack size that can be used by C code in a thread to n. Every thread that is spawned during the execution of the program passed to java has n as its C stack size. The default units for n are bytes and n must be > 1000 bytes. To modify the meaning of n, append either the letter k for kilobytes or the letter mfor megabytes. The default stack size is 512 kilobytes (-Xss512k).
-Xprof
Profiles the running program, and sends profiling data to standard output. This option is provided as a utility that is useful in program development and is not intended to be be used in production systems.
-Xrunhprof[:help][:<suboption>=<value>,...]
Enables cpu, heap, or monitor profiling. This option is typically followed by a list of comma-separated "<suboption>=<value>" pairs. Run the command java -Xrunhprof:help to obtain a list of suboptions and their default values.
-Xrs
Reduces use of operating-system signals by the Java virtual machine (JVM). This option is available beginning with J2SE 1.3.1.

In J2SE 1.3.0, the Shutdown Hooks facility was added to allow orderly shutdown of a Java application. The intent was to allow user cleanup code (such as closing database connections) to run at shutdown, even if the JVM terminates abruptly.

Sun's JVM catches signals to implement shutdown hooks for abnormal JVM termination. The JVM uses SIGHUP, SIGINT, and SIGTERM to initiate the running of shutdown hooks.

The JVM uses a similar mechanism to implement the pre-1.2 feature of dumping thread stacks for debugging purposes. Sun's JVM uses SIGQUIT to perform thread dumps.

Applications embedding the JVM frequently need to trap signals like SIGINT or SIGTERM, which can lead to interference with the JVM's own signal handlers. To address this issue, the -Xrs command-line option has been added beginning in J2SE 1.3.1. When -Xrs is used on Sun's JVM, the signal masks for SIGINT, SIGTERM, SIGHUP, and SIGQUIT are not changed by the JVM, and signal handlers for these signals are not installed.

There are two consequences of specifying -Xrs:

  • SIGQUIT thread dumps are not available.
  • User code is responsible for causing shutdown hooks to run, for example by calling System.exit() when the JVM is to be terminated.

WARNING: Flags -Xdebug and -Xint are mutually exclusive. No more than one of those options should be used on a java command line.

             -Xconcurrentio: Which generally helps programs with many threads, particularly on Solaris. The main feature turned on with -Xconcurrentio is to use LWP based synchronization instead of thread based synchronization. We have found certain applications to speed up by over 40%. Since 1.4, LWP based synchronization is the default, but -Xconcurrentio can still help since it turns on some other internal options. Finally, there is an alternate thread library which is the default on Solaris 9 and can also be used on Solaris 8 by changing your LD_LIBRARY_PATH to include /usr/lib/lwp before /usr/lib.
分享到:
评论

相关推荐

    Java入门笔记8_JavaTools

    其基本语法是`java Options Classname Arguments`。`Options`可以包括调试选项如`-debug`,检查源文件是否更新的`-checksource`,设置类路径的`-classpath`,以及调整内存分配的`-mx`和`-ms`等。这些选项有助于优化...

    java [options] classname [args]

    进阶之路-Java技术体系- 黄国渝的博客- ...发表时间:2019年7月22日 - java [ options ] classname [ args ] java [ options ] -jar filename [ args ] javaw [ options ] classname [ args ] javaw [ options ] -...

    Java解析 SAP Webserice接口方式

    ### Java 解析 SAP WebService 接口方式 在企业级应用开发中,SAP WebService 的集成是一项重要的任务。本文将详细介绍如何通过 Java 来解析并调用 SAP 提供的 WebService 接口,特别是涉及密码认证的情况。 #### ...

    Caused by: java.lang.OutOfMemoryError: PermGen space解决方案

    - 在 `Java` 配置界面,可以看到 `VM arguments` 或 `Java Options` 字段,这里可以设置JVM的启动参数。为了增加 PermGen 空间,需要添加以下命令行参数: ``` -XX:MaxPermSize=256m ``` 其中,256m 是你希望...

    将Java文件打成exe文件的工具(exe4j工具及使用说明)

    - **配置启动参数**:如果需要,你可以在“Java Options”和“Program Arguments”中输入相应的命令行参数。 - **生成exe文件**:完成以上配置后,点击“Execute”或“Next”按钮,选择输出目录和.exe文件名,exe4j...

    src---smtp_and_pop3

    在实际应用中,开发者可能会使用各种编程语言(如Python、Java、C#等)来实现SMTP和POP3的客户端。例如,Python中可以使用smtplib库来实现SMTP服务,而poplib库则用于POP3服务。这些库提供了一系列方法来处理SMTP和...

    tomcat6.0 修改启动内存设置 java jvm参数配置

    修改注册表键 `HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Tomcat Service Manager\Tomcat5\Parameters\JavaOptions` 的值。例如: - 原始值可能为: ```bat -Dcatalina.home="C:\ApacheGroup\...

    java环境变量一键设置

    Java环境变量配置 在"系统变量"下进行如下配置: (1)新建-&gt;变量名:JAVA_HOME变量值:D:\Java\jdk1.6.0_12(这只是我的JDK安装路径) (2)编辑-&gt;变量名:Path在变量值的最前面加上:%JAVA_HOME%\bin;%JAVA_HOME%\jre\...

    Apache Tomcat 7.0

    免安装版本配置: 1.解压 2.添加环境变量TOMCAT_HOME;CATALINA_HOME=%TOMCAT_HOME%;CATALINA_BASE=%TOMCAT_HOME% 3.修改startup.bat和shutdown.bat文件 增加SET JAVA_HOME=.... SET CATALINA_HOME=....

    设置jvm内存的方法

    HKEY_LOCAL_MACHINE\SOFTWARE\ApacheSoftwareFoundation\TomcatServiceManager\Tomcat5\Parameters\JavaOptions ``` - **MyEclipse中的Tomcat配置**: - 在MyEclipse中,需要通过窗口-&gt;首选项-&gt;MyEclipse-&gt;...

    java虚拟机jvm及Tomcat中的jvm有关内存的设置与调优

    具体路径为`HKEY_LOCAL_MACHINE\SOFTWARE\ApacheSoftwareFoundation\TomcatServiceManager\Tomcat6\Parameters\JavaOptions`,在此处加入相应的内存参数。 #### 查看与监控JVM内存信息 为了实时监控JVM内存状态,...

    android 图片压缩 demo

    BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; // 先获取原始图片尺寸 Bitmap originalBitmap = BitmapFactory.decodeFile(filePath, options); options....

    JVM初始分配的内存.doc JVM初始分配的内存.doc

    - **注册表路径**:`HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Tomcat Service Manager\Tomcat5\Parameters\JavaOptions` - **示例**:在上述注册表键下,原有值可能为`-Dcatalina.home="C:\Apache...

    android图片缩放

    BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; ``` 2. **预获取图片尺寸**:利用`BitmapFactory.decodeFile()`或`BitmapFactory.decodeStream()`等方法,...

    JAVA-OPTS参数设置.docx

    JAVA-OPTS参数设置 JAVA-OPTS 是一个变量,用于设置 JVM 相关运行参数。JVM 是 Java Virtual Machine 的缩写,表示 Java 虚拟机。JAVA-OPTS 变量的设置对 Java 应用程序的性能和稳定性具有重要影响。 在设置 JAVA-...

    Android中图片处理(压缩 显示 保存)

    Options options = new Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(srcPath, options); int reqWidth = 100; int reqHeight = 200; options.inSampleSize = calculateInSampleSize...

    jvisualvm使用方法

    5. **调整PermGen大小**:为了缓解或解决“PermGen space”溢出问题,可以在Tomcat的`JavaOptions`中添加以下参数来调整PermGen区域的大小: ``` -XX:PermSize=512m -XX:MaxPermSize=512m ``` 这里`-XX:...

    Tomcat5 windows服务不能启动的终极解决方法.docx

    - 在Java VM栏,设置Auto为未选中,Java VM指向JVM DLL路径,Java Options包含必要的系统属性和启动选项,例如`-Dcatalina.home`、`-Djava.endorsed.dirs`和`-Xrs`。 - 标准流设置,如Output和Error日志路径。 4....

Global site tag (gtag.js) - Google Analytics