vote up 3 vote down star
2

I'm looking to find bottlenecks in my Java application in Eclipse. I'm thinking this might be useful:

http://www.eclipse.org/projects/project%5Fsummary.php?projectid=tptp.performance

Any other good plug-ins to use?

EDIT OK, it doesn't necessarily have to be an Eclipse plug-in. But it would be nice. And, I'm most interested in speed.

flag

67% accept rate

6 Answers

vote up 5 vote down check

If you can, use jvisualvm in the java 6 Jdk. It works out of the box and can answer many of the initial questions.

link|flag
vote up 5 vote down

YourKit is an excellent commercial profiler that has good Eclipse integration.

link|flag
vote up 4 vote down

The Eclipse Memory Analyser has been helping me a lot recently.

link|flag
This repository link isn't working for me: download.eclipse.org/technology/mat/… – Rosarch Oct 17 at 1:07
1  
Profiler != Heap analyzer. – Pascal Thivent Oct 17 at 8:51
vote up 0 vote down

You can always do this. It may surprise you, but it is very effective.

link|flag
vote up 2 vote down

In my experience, TPTP is something to run away from as fast as possible. It's a horribly overengineered mess, almost impossible to get to work, badly documented, and slow as molasses.

I'm not aware of any good and free profiling plugins for eclipse. But then, does it really have to be an eclipse plugin? VisualVM comes with the JDK since Java 6u7, is fast and easy to use. It may not be the most feature-rich of profilers, but has been sufficient for me.

link|flag
Seconded, avoid TPTP at all costs. – soru Oct 19 at 22:40
vote up 2 vote down

I found JProfiler to be really helpful. It has Eclipse integration, although it is not an Eclipse plugin per sa', so you can very easily invoke a profiler instead of a regular execution session. It had very good bottleneck analysis and you can find-tune the settings to lower the overheads of the profiler itself. Highly recommended.

link|flag

Your Answer

Get an OpenID
or

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