How do i configure WebLogic 8.1 to use a specific JRE / JDK on my development machine. I realized that it is using hot spot and i would like to change it to run on JRockit.
|
You need to change the JAVA_VENDOR setting in the setDomainEnv.sh/.cmd file (depending whether you are running a Linux or Windows box). Adding/changing the following lines to the start of your setDomainEnv file should work: set JAVA_VENDOR=BEA set BEA_JAVA_HOME=(path to your jrockit installation, e.g. c:\BEA\jrockit) Now you should start the server. You can monitor, in the console (stdout), the indication about which Java version is being used: starting weblogic with Java version: It is also possible to do it during the configuration wizard, when you are adding a domain, under the Java SDK Selections tab. |
||||
|
|