arkadiy kraportov
arkadiy kraportov

Reputation: 3729

JRockit Mission Control does not capture Spring Bean methods invocations

I am trying to profile my Spring Web app running on WebLogic 9.2

JRockit Mission Control 4.0 works perfectly except it doesn't capture Spring Beans method invocations. Are there any tricks to make it work?

Upvotes: 0

Views: 714

Answers (1)

Kire Haglin
Kire Haglin

Reputation: 7069

Most likely your Spring Web app loads the same class using different class loaders.

The method profiler only counts invocations for the first classloader it finds, not all of them.

Upvotes: 0

Related Questions