How to measure performance in Java developement

java, performance

Solution

Use profiling tools, such as YourKit, JProfiler and HPROF (this one is a command line tool).

Problem

Is there any tool can measure execution time for each function call and find out bottle neck for a given developing java j2se project? Thanks!

Original source

Related problems