user205036
user205036

Reputation:

Java tracer / logger

I need to trace compiled Java application with thousands of JAR and .CLASS files, do you know any suitable tool that could be attached to the JVM to trace function calls (without the source code)?

Upvotes: 1

Views: 1802

Answers (3)

Deepak Bala
Deepak Bala

Reputation: 11185

Yes. Jprofiler can trace method calls / call trees / allocation trees among other data without source code.

Upvotes: 1

srini.venigalla
srini.venigalla

Reputation: 5145

Here is some builtin trace facility, does this help?

http://docs.oracle.com/javase/1.5.0/docs/guide/deployment/deployment-guide/tracing_logging.html

Upvotes: 0

Related Questions