IntelliJ IDEA WebLogic Deployment¶
IntelliJ IDEA supports the deployment of Java applications to the Oracle WebLogic application server, allowing developers to run, debug, and manage enterprise applications directly from the IDE.
Prerequisites¶
To facilitate local development and testing, WebLogic can be run within a Docker container. This allows for a consistent environment setup without requiring a full local installation of the server.^[600-developer-java-application-server-weblogic-weblogic-intellij.md]
The following docker-compose.yml configuration can be used to quickly provision a WebLogic 12 instance^[600-developer-java-application-server-weblogic-weblogic-intellij.md]:
version: "3"
services:
db:
image: ismaleiva90/weblogic12
ports:
- "7001:7001"
- "7002:7002"
- "5556:5556"
restart: always
Once the container is running, the WebLogic Administration Console is accessible via http://localhost:7001/console^[600-developer-java-application-server-weblogic-weblogic-intellij.md].
Default Credentials:
* User: weblogic
* Pass: welcome1^[600-developer-java-application-server-weblogic-weblogic-intellij.md]
Related Concepts¶
- [[Docker]]
- WebLogic Server
Sources¶
^[600-developer-java-application-server-weblogic-weblogic-intellij.md]