reloading classes : Java Glossary

reloading classes
If the code for a class changes, Java will not automatically notice and load the new version, until you start up the JVM (Java Virtual Machine) again. What you can do is create a new ClassLoader, and use it to load the new code for the class. You still have a very difficult problem of tracking down all instances of the old class and getting rid of them, which will eventually cause the old class to unload. There is no direct way to unload the old class, or upgrade the objects. The JVM does not mind having objects of both the old and new version of the class lying about, however, the ClassLoader may get into its head it has to reload many of the other classes, since it has no record of loading them itself. You will end up with duplicates of many classes.

You are probably better off not to use a new ClassLoader, but instead to rename the class, and then you can track down the old objects and pass them to the new constructor to upgrade them. You then have to update all the references to make them point to the new object. By using one layer of indirection, you can make that task easier since there is only one link to update. You have to ensure old and new share a common base class or interface that you can use for references.

Another possible object-upgrading tool is serialization where you serialise version-marked objects and reconstitute them with new code. It is slow but convenient. I have not experimented with any of these techniques personally.


CMP homejump to top

available on the web at:

http://mindprod.com/jgloss/reloading.html
  

optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\reloading.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, especially when sending an ad-hominem attack, a rant composed mainly of obscenities or a death threat, please quote the offending passage and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. I can’t very well fix erroneous or ambiguous text if I can’t find it.
Blog
IP:[65.110.21.43]
Your face IP:[23.22.76.170]
You are visitor number 18,374.