D Using WebLogic Server with JDK 7

This appendix describes the steps you need to perform to use WebLogic Server 10.3.6 with JDK 7. It also describes issues that you may encounter when using WebLogic Server with JDK 7. WebLogic Server does not ship with JDK 7.

Prior to installing JDK 7 for use with WebLogic Server, review the following issues that you may encounter when using JDK 7:

  • In some cases, the new JVM requires more PermGen space, which can cause PermGen errors. If this occurs, use one of the following two options to resolve the issue:

    • If you are using the java command to start WebLogic Server, include the following option in the command:

      -XX:MaxPermSize=350m

    • If you are using startWebLogic.sh (UNIX) or startWebLogic.cmd (Windows) to start WebLogic Server, prior to issuing the command, set the MEM_ARGS environment variable as follows:

      UNIX:

      USER_MEM_ARGS="-Xms32m -Xmx200m -XX:MaxPermSize=350m"

      export USER_MEM_ARGS

      Windows:

      set USER_MEM_ARGS=-Xms32m -Xmx200m -XX:MaxPermSize=350m

  • In some cases, the new compiler generates larger byte code. It is possible that a large method may exceed the 64KB limit per method. In this situation, you may need to refactor the method.

  • Classes may have been removed that are from the internal package sun.*, or that have been marked as deprecated in a previous version of the JVM. If an application uses these removed methods, a ClassNotFound exception will occur.

  • JDBC 4.1 methods are not currently supported in WebLogic Server with JDK 7. Calls to these methods will result in an SQLException indicating that the method is not supported.

Before installing WebLogic Server, perform the following steps:

  1. Download the appropriate JDK 7 for your platform from the following URL:

    http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html

  2. Install the JDK.

  3. Set JAVA_HOME to point to the installed JDK 7.

  4. Set PATH to point to $JAVA_HOME/bin.

  5. When installing WebLogic Server: select a Custom installation. For the JDK selection, deselect the bundled JDK entries and under the Local JDK section browse and select the JAVA_HOME directory.

    1. On the Choose Install Type screen, select the Custom option.

    2. On the JDK Selection screen, deselect the bundled JDK entries, and then under the Local JDK section, browse to and select the JAVA_HOME directory.

  6. After installing WebLogic Server, copy the following files from MW_HOME/modules to JAVA_HOME/jre/lib/endorsed, where MW_HOME is the Middleware home directory:

    javax.annotation_1.0.0.0_1-0.jar

    javax.xml.bind_2.1.1.jar

    javax.xml.ws_2.1.1.jar

    Note:

    If you cannot modify your JAVA_HOME, Oracle recommends that you create a new directory, copy only these JAR files to the directory, and set the following system property to point to this directory to load these libraries:
    -Djava.endorsed.dirs=<Libs_Absolute_Path>