Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remote deploy an application in weblogic?

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.

like image 752
Sawyer Avatar asked Jan 25 '10 10:01

Sawyer


People also ask

What are 2 ways to deploy a WebLogic server application?

Weblogic Server can be started in one of two modes: development or production mode. (When you start the Workshop server domain using the startup script provided, it runs in development mode.)

How do I hot deploy in WebLogic?

To use the hot deploy feature, you start the WebLogic Server as described in the Tech Start Guide Setting up and starting WebLogic Server so that dynamic class loading is used. After you start the WebLogic Server with the new class loader, you can deploy EJBeans from the WebLogic Console or with the weblogic.


1 Answers

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 the weblogic.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)
like image 98
Pascal Thivent Avatar answered Oct 12 '22 07:10

Pascal Thivent