WebLogic - studiofu/brain GitHub Wiki
Quick Start
WebLogic Structure
one than one domain could be created in one oracle weblogic and each domain could contain more than one server, the weblogic server instance)
each domain contain one special weblogic server instance, it's the managed server.
start from docker
create domain.properties with the following information
username=weblogic
password=weblogic1
execute
$ docker pull store/oracle/weblogic:12.2.1.3-dev-190111
$ docker run -d -p 7001:7001 -p 9002:9002 \
-v $PWD:/u01/oracle/properties store/oracle/weblogic:12.2.1.3
access the admin console at https://ip-address:9002/console
Resources
Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows
Docker Weblogic : Run Oracle Weblogic 12c on Docker
https://www.middlewareinventory.com/blog/weblogic-docker/
Create Spring Boot Application and deployed to WebLogic
https://o7planning.org/en/11901/deploying-spring-boot-application-on-oracle-weblogic-server
Spring Boot : how to deploy on oracle weblogic 12c