I want to find memory leaks in my java application but I don't know how to use Netbeans profiler to do that.
|
|
There are several resources on the web that can give you a hand http://www.javapassion.com/handsonlabs/nbprofilermemory/ http://www.netbeans.org/kb/articles/nb-profiler-uncoveringleaks%5Fpt1.html http://kirk.blog-city.com/more%5Fon%5Fmemory%5Fleaks.htm In a nutshell, you monitor the "surviving generators", objects that are kept in the memory by your application. When you see that this metric gets out of hand, you can switch to the Memory Live profiling mode, sort the classes by surviving generators and then with the right click mouse button select the "Show Allocation Stack Traces" option |
||
|
|
|
|
Have a look here. |
||
|
|
|
|
At Profiler Project Homepage at the Learn tab you will see that they have many tutorials for beginners or advanced users. |
||
|
|
|
|
All of the documentation for the NetBeans profiler can be found on the NetBeans website. They have an entire section devoted to the profiler - from an introduction to advanced use! |
||
|
|
