How to clear old class files cached in JVM
JVM stores old class files in its cache even after the corresponding files have been deleted from the database. This causes a conflict if a new file is saved with the same name as one that was deleted earlier causing old data to be fetched and not the new one.
am using the following line of code to load the class file :
Class.forName(className, false, this.getClass().getClassLoader())
please help
Thanks - N

