Reputation: 49
I have to deploy an exploded war file in my local WebLogic Server access by Administration Console.
How should I do this?
Upvotes: 2
Views: 10286
Reputation: 306
There are 2 ways to go with this:
deploy as a WAR package (assuming your WAR is mywar.war)
jar xvf mywar.war WEB-INF/web.xml
jar uvf mywar.war WEB-INF/web.xml
Deploy as an exploded WAR (ie, as normal OS folder).
mywar.war
. WEB-INF
is directly under the folder.Now you can deploy them normally using the Deployment
tab.
Upvotes: 2
Reputation: 128
Open console. Go to Deployments -> press Install -> find to path to extracted war files, you should see (open directory) label -> press Next - Next - Finish. You are done, it is deployed.
Upvotes: 0