how to automate multiple apps & adf shared library deployment?
I'm writing python scripts for the enterprise application & adf shared library deployment in weblogic.
I'm able to deploy the EAR files stored in a folder. using below logic:
- select the folder where updated Apps are present.
- Select each file in the path & extract the name of the application(appName=myApp, where myApp is extracted from myApp.ear)
- find the app name in AppDeployments() using wlst & cd to the cd('AppDeployments/myApp')
- fetch the target where the mApp is deployed, cmo.getTargets() method.
- stopApplication() -> undeploy() -> deploy(appName, newAppPath, targetServer) -> startApplication()
With this i'm able to deploy my updated EAR to the weblogic. But have issue in following same for the ADF shared library deployment.