Процесс развертывания может быть выполнен тремя способами ...
1.Stage 2.Nostage 3.ExtenalStage
Это объяснение промежуточных режимов в WebLogic:
Stage mode -
The Administration Server copies the archive files from their source location to a location on each of the targeted Managed Servers that deploy the archive. For example, if you deploy a J2EE Application to three servers in a cluster, the Administration Server copies the application archive files to each of the three servers. Each server then deploys the J2EE Application using its local copy of the archive files.
Stage mode является режимом по умолчанию при развертывании более чем на одном экземпляре WebLogic Server.
Nostage mode -
The Administration Server does not copy the archive files from their source location. Instead, each targeted server must access the archive files from a single source directory for deployment. For example, if you deploy a J2EE Application to three servers in a cluster, each server must be able to access the same application archive files (from a shared or network-mounted directory) to deploy the application.
Nostage modeявляется режимом по умолчанию при развертывании только на Сервере администрирования (например, в домене с одним сервером).Вы также можете выбрать режим nostage, если вы запускаете кластер экземпляров сервера на том же компьютере.
Режим External_stage -
External_stage mode is similar to stage mode, in that the deployment files must reside locally to each targeted server. However, the Administration Server does not automatically copy the deployment files to targeted servers in external_stage mode; instead, you must manually copy the files, or use a third-party application to copy the files for you.
Надеюсь, он вам поможет.