when stop my project , tomcat say :
The following web applications were stopped (reloaded, undeployed), but their classes from previous runs are still
loaded in memory, thus causing a memory leak (use a profiler to confirm) .
Where we find that Which classes are left in memory ?
please help me .
You can run
jmap -histowhich will show you loaded classes.For example:
Another way is to enable classloading debug information and do some scripting to detect what is left loaded.