I have two computers , I don't want to install weblogic and oracle in my development computer, they consume too much memory, the problem is how can I deploy my application on development computer to another free computer which has oracle and weblogic installed ? I am using weblogic 10.3.
+1
A:
I don't want to install weblogic and oracle in my development computer , they consume too much memory
Even when not running?
how can I deploy my application from my development machine to another machine which has oracle and weblogic installed
You can use the following tools:
webLogic.Deployer
(see the weblogic.Deployer Command Line Reference)- Admin Console
wldeploy
, the Ant Task version of theweblogic.Deployer
(see the wldeploy Ant Task Reference)- WLST (see Deploying Applications in the WebLogic Scripting Tool documentation).
Other options (if you are using maven):
- weblogic maven plugin (no feedback to give you except that I wouldn't use it)
cargo maven plugin(doesn't support deployment to remote weblogic)
Pascal Thivent
2010-01-26 15:09:55
A:
If you use the Ant Task, then be sure and include the upload="true" parameter. This will copy the war, ear file to the remote weblogic system so you don't have to.
Dave Z
2010-03-02 19:09:38