What do you use for profiling in Eclipse, now that TPTP is going to be archived?

前端 未结 3 634
不思量自难忘°
不思量自难忘° 2021-02-04 08:57

Have you found a good alternative to TPTP, which is being archived, to profile Java applications in Eclipse?

I understand this is not exactly a programming question, so

3条回答
  •  再見小時候
    2021-02-04 09:13

    VisualVm, that comes with the JDK itself is good for some CPU and memory profiling, though, it doesn't integrate well with eclipse.

    YourKit is a great profiling tool that integrates quite well with eclipse but its not free. You will need to buy a license for it.

    Eclipse Memory Analyzer (MAT) is another great tool that helps a lot in analyzing java heap dumps. It is perfect for pointing out any un-intentional memory leaks in a java application.

提交回复
热议问题