Just a quick entry about something that I ran into in the past with JDeveloper 11.1.2.4, and that some of you who are using Mac might run into.
When you try and run your web application and the embedded WebLogic tries to start you might run into an error like:
Unrecognized option: -jrockit Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit.
This is most likely due to the fact that JDeveloper is trying to use the wrong JVM to run your WebLogic.
To solve this - go into the system11.1.2.4.39.64.36.1/DefaultDomain/bin directory and locate the setDefaultDomain.sh file.
Edit this file and add the following lines:
JAVA_VENDOR="Sun"
export JAVA_VENDOR
By doing this you'll instruct WebLogic to start with a regular JVM and not the JRockit variant which isn't on your mac.