Simply, what’s the best (quickest) way to deploy an application (EAR), in a development environment, to two Weblogic 10 managed servers that are part of a cluster? I’ve tried the autodeploy directory, but as I understand it that only deploys to the admin server.
Simply, what’s the best (quickest) way to deploy an application (EAR), in a development
Share
I was already using ant for building the project so the most efficient thing seemed to be using the ANT deployment scripts for weblogic. The only issue I had was getting the WLDeploy task to be defined. I originally include all the jars in the weblogic server library, but then after some googling narrowed it down to the two you see. I’m didn’t check to see if both are actually necessary, but it’s working this way. I’ll go back and double check later.
I also tried using the hotdeploy directory, but as I understand it that directory only deploys to the admin server, not to a cluster, so it didn’t fit my needs.