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

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

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

link|improve this answer
@Kai, Hi, thanks for taking a look.. I am actually using Jdeveloper in deploying my app in the Integrated Weblogic Server.. Do you have an idea how to find this? Thanks. – Mark Estrada Aug 16 '11 at 3:01
You should see a $JDEV_HOME\System.11.1.your.ip.address\DefaultDomain. Under that, there should be an application directory. – Kal Aug 16 '11 at 3:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.