JRockit Mission Control 不捕获 Spring Bean 方法调用
我正在尝试分析在 WebLogic 9.2
JRockit Mission Control 4.0 上运行的 Spring Web 应用程序,该应用程序运行良好,只是它不捕获 Spring Beans 方法调用。有什么技巧可以让它发挥作用吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 Spring Web 应用程序很可能使用不同的类加载器加载相同的类。
方法探查器仅计算它找到的第一个类加载器的调用,而不是所有调用。
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.