vote up 2 vote down star

I want to find memory leaks in my java application but I don't know how to use Netbeans profiler to do that.

flag

60% accept rate

4 Answers

vote up 1 vote down check

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

link|flag
vote up 1 vote down

Have a look here.

link|flag
vote up 1 vote down

At Profiler Project Homepage at the Learn tab you will see that they have many tutorials for beginners or advanced users.

link|flag
vote up 1 vote down

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!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.