Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Viewing Deployed Apps in Weblogic Server

I am new to weblogic and I would like to find out how my files are arrange in Weblogic? I have used only Tomcat and this is the first time where I will deploy in a Weblogic Server.

In Tomcat, I could view the exploded view of my projects by looking at the Tomcat Home Directory and the WebApps folder. There I could view how my application css/js/resource files are deployed.

%TOMCAT_HOME%\webapps

I am looking for a similar functionality in Weblogic? Can somebody tell me how? Thanks

I am using Weblogic 10.3.4 by the way

like image 288
Mark Estrada Avatar asked Aug 16 '11 02:08

Mark Estrada


People also ask

How do I deploy an app in WebLogic?

Open the WebLogic Server console for the target server running in production mode. On the left-hand side Change Center pane, click Lock & Edit. On the left-hand side Domain Structure pane, click Deployments. On the right-hand content pane, click Install.

Where is ear deployed in WebLogic?

The EAR file is saved in the install_home \deployment\default folder. Select Install to deploy the EAR file to the cluster.

Where are web apps deployed?

Web Applications use a standard directory structure defined in the J2EE specification and can be deployed as a collection of files that use this directory structure (this type of deployment is called exploded directory format) or as an archived file called a . war file.


2 Answers

WebLogic supports several different ways of deploying applications, so the answer to your question is not very straightforward.

Typically, if you deploy a war/ear, then WebLogic will place them in the $WEBLOGIC_HOME/application directory. WebLogic will then explode your ear/war into a separate wl_stage folder that will be under your managedServer directory.

You can also use the ability of WebLogic to autodeploy ( not recommended for production apps ) where WebLogic will automatically explode the app.

In summary, you probably need to reach for the documentation to get all your questions answered.

http://download.oracle.com/docs/cd/E13222_01/wls/docs81/deployment/overview.html

like image 96
Kal Avatar answered Sep 30 '22 09:09

Kal


I'm not quite sure if you want to find out where to deploy or where applications have been deployed. But if you want to see where are the deployed applications in weblogic, you can go to its console (e.g. localhost:7001/console) after start the server. Then follow the following steps:

  1. Find and click "Deployments" label
  2. Find and click your application in the right panel
  3. Click "Overview" tab, then you will see "Path" in the opened information table.
like image 45
Willie Z Avatar answered Sep 30 '22 11:09

Willie Z