Widespread Weblogic deployment during development (e.g. WSSD / RAD)

All my previous projects have been on websphere. I am now in a team developing a weblogic application.

In Websphere (WSSD / RAD) development, the server was more "integrated" with the IDE, so the assembly could automatically trigger an incremental deployment on the server (development / local).

Is such a setting possible in a web environment? I googled for some weblogic plugins for eclipse, but I do not see this being referred to as a function.

What is the best setup for development in weblogic + eclipse so that the assembly / deployment / restart costs are minimal during development?

+3
source share
1

WebLogic ant . build.xml "redeploy" WLS 9.2, Eclipse:

<!-- Redeploy the application to WebLogic Server -->
<wldeploy
    action="redeploy" verbose="true" name="<application name>"
    user="<admin user>" password="<admin password>"
    adminurl="t3://<admin server URL>" targets="<server name>" />

<server name> .

, persistent-store-type weblogic.xml, , , - , , .

docs

+1

Source: https://habr.com/ru/post/1753672/


All Articles