views:

115

answers:

1

Hi, 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?

A: 

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.

Kire Haglin