Hi,
Is there a way to hot deploy java class changes in my local 7.6 development environment i.e. without doing a redeployment?
thanks, Chinmay
I think that what Mario is describing here is hotSwap which is the possibility to modify a class definition while debugging. If you want to deploy new versions of your .class files to a running instance of Weblogic, I think that you can try the procedure described in the following thread (I have not tried it):
http://www.coderanch.com/t/67514/BEA-Weblogic/Hot-deploy-weblogic
If you want to learn more about the way hotSwap and Hotdeploy (or class reloading) works and it implications you can read the set of articles that starts with this:
http://www.zeroturnaround.com/blog/reloading-objects-classes-classloaders/
Note that this is a serie of articles from a vendor of a solution to streamline the development process by easing the deployment process, but the the description that they do about classloaders, class reloading and Hotswap are worth the reading of the articles.
Thanks to both of you.
Mario,
I had tried this with 7.3.1 couple oy years ago and it didn't work. Didn't hit me to try the same with 7.6 (newer JDK). It works! Thanks again.
Chinmay