• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

where does weblogic unpacks war contents

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to see the changes to my static pages like html.In tomcat I can straight repalce in exploded directory, but where in weblogic , can I do this in weblogic ?
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Deploy the application as an exploded archive, then you can change files in the exploded archive and Weblogic will pick up the changes.
 
miro swartch
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how will my config entry look like in this case

<Application Name="pcr"
Path="C:\software\bea\weblogic\8.1\sp4\user_projects\domains\uprr\applications\pcr.ear"
StagingMode="nostage" TwoPhase="true">
<WebAppComponent Name="pcr" Targets="myserver" URI="pcr.war"/>
<EJBComponent Name="pcr-ejb.jar" URI="pcr-ejb.jar"/>
</Application>

this is my present config entry .
 
Joe Ess
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I used the Weblogic Management Console to deploy a project I have as an exploded directory. This is the descriptor it generated:


The directory "C:\Projects\SecurityTest" contains a subdirectory "build" which contains what I would deploy as a WAR file. That is to say, "build" contains root-level JSP's and the WEB-INF directory.
 
If you open the box, you will find Heisenberg strangling Shrodenger's cat. And waving this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic