探查器查看方法所花费的时间
你好,我有一个在 Jboss 服务器上运行的 java 应用程序。我想分析该应用程序。我感兴趣的具体细节是执行方法所花费的时间。
是否有适用于 java/j2ee 应用程序的第三方分析器可以让我查看方法的时间分布?
谢谢
Hello I have a java application running on a Jboss server. I want to profile the application. The specific details that I am interested in is the time spent in executing the methods.
Is there any third party profiler for java/j2ee applications that will allow me to look into the time distribution for methods?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JProfiler 怎么样?在 CPU 选项卡中,您可以查看方法所花费的时间。
How about JProfiler? In the CPU tab, you can see time spent in methods.
推出您自己的 AOP 建议实现并不是什么大问题,它将测量方法执行所花费的时间。查看第 15 章. 面向方面编程 (AOP) 支持
一个<一href="https://stackoverflow.com/questions/1366354/do-method-profiling-basic-execution-time-with-spring-aop/1366428#1366428">使用 Spring 实现的解决方案可用于灵感。
It's no big deal rolling out your own implementation of an AOP advice which will measure time spent in method execution. Take a look at Chapter 15. Aspect Oriented Programming (AOP) Support
A solution implemented with Spring may be used for inspiration.