0

Front End: AngularJS

Back End: Java

Our employer decided to use Weblogic 12 to deploy the project. So our problem is:

Is there is any way to modify a javascript file and see the change immediately? (e.g. a host swap in weblogic)

Note: We don't use Eclipse

Display Name is missing
  • 6,197
  • 3
  • 34
  • 46
julioVG
  • 81
  • 1
  • 12

1 Answers1

0

If you are deploying an ear/war file, you can hot swap a new version in via the following methods:

This is how you would do it in a production environment with the admin console:

  • From the Weblogic admin console, click Deployments, click the checkbox next to your ear/war
  • Click Update
  • The next screen will ask you for the source path - choose your new file here. You can also change the deployment plan path if you use one

You can also call java weblogic.Deployer with the update option if you want to do it from the command line.

It is also possible to do the same via WLST scripting - see these Oracle Docs

If you're interested in hot swapping JSP pages without a recompile - see the use of nostage for your deployments

Display Name is missing
  • 6,197
  • 3
  • 34
  • 46