I have some problems with permgen overflow. What tools I can use to view what classes are now loaded into permgen and how much memory they use? Thanks.
|
feedback
|
|
Maybe you have a large code base or are interning lots of strings. Try
(Note: the Example:
You can also try dumping the heap to a file and then loading it into Eclipse Memory Analyser, which will give you useful information such as a Leak Suspects Report and Dominator Tree.
If necessary, you can increase your PermGen space by using the | |||
feedback
|
|
Looks like what you search is a profiler. (for example jProfiler or for open source : http://java-source.net/open-source/profilers) | |||||||
feedback
|