Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Weblogic new deployment reverting to old code

I am currently trying to deploy code from .WAR file using a Weblogic Console. Currently it reverts to the Deployment that I had already deleted. No matter what changes I make it still reverts to the old code. What can I do to deploy my new code.

like image 716
user3357062 Avatar asked Mar 02 '26 19:03

user3357062


1 Answers

  • Stop your managed server (if that's where it's deployed)
  • Stop the old deployment
  • Delete the old deployment
  • Activate changes
  • Install the new war file
  • Activate changes

If the above doesn't work, it is possible there is some caching going on. If that's the case try the following:

Uninstall your deployment as above. Go to the /domains/mydomain/servers/myserver/ directory and delete:

  • tmp
  • cache
  • logs
  • data

Then restart your server and deploy your new .war file.

like image 159
Display Name is missing Avatar answered Mar 06 '26 14:03

Display Name is missing