JDK-6888203 : plugin doesn't add awt.warmup property when launches client VM
  • Type: Bug
  • Component: deploy
  • Sub-Component: deployment_toolkit
  • Affected Version: 6u18
  • Priority: P2
  • Status: Closed
  • Resolution: Fixed
  • OS: windows
  • CPU: generic
  • Submitted: 2009-10-05
  • Updated: 2013-11-01
  • Resolved: 2010-01-08
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7
6u18 b04Fixed 7Fixed
Related Reports
Relates :  
Relates :  
Description
for for 6867515 added "early" Direct3D initialization.
To turn on the feature "-Dsun.awt.warmup=true" JVM property should be specified.
Due a bug in the fix plugin doesn't add the property starting JVM

Comments
EVALUATION Fix the way property is passed.
05-10-2009

SUGGESTED FIX /deploy/src/plugin/share/classes/sun/plugin2/main/server/JVMManager.java *************** *** 892,898 **** addJavaExtDirsOption(params); addXToolkitOption(params, info.getProductVersion()); addUIElementOption(params); - parameters.addInternalArgument("-Dsun.awt.warmup=true"); if (userJPIProfile != null) { // Pass along the USER_JPI_PROFILE setting as the // javaplugin.user.profile system property so the attached --- 892,898 ---- addJavaExtDirsOption(params); addXToolkitOption(params, info.getProductVersion()); addUIElementOption(params); + params.addInternalArgument("-Dsun.awt.warmup=true"); if (userJPIProfile != null) { // Pass along the USER_JPI_PROFILE setting as the // javaplugin.user.profile system property so the attached
05-10-2009