DEV Community

Discussion on: JVM memory leak, where to begin?

Collapse
 
danielwoodsdeveloper profile image
Daniel Woods

You'll want to use a tool like JavaMelody or JProfiler to be able to work out what's going on inside the JVM. You may want to look at taking a Heap Dump and analysing it; JProfiler has a pretty good Heap Walker which will allow you to sort objects by size or the number of instances, and most likely your top object here is the leak.

Collapse
 
jouo profile image
Jashua

thank you very much :D