如何使用 Struts 2 确定页面生成时间?
我正在使用 Struts 2,我想在没有外部分析器的情况下确定页面生成时间。我可以轻松地分析 actionsexecute() 方法,但我不知道如何包括之前花费的时间(在调度程序、拦截器...)和之后花费的时间(与视图相对应的 servlet 所花费的时间(“jsp 时间”) ))。
有没有简单的方法可以做到这一点?如果没有,我至少如何分析“jsp 时间”(也许是我不知道的标签?)?我认为只考虑操作时间+ jsp 时间就足够准确了。
I'm using Struts 2 and I'd like to determine the page generation time without an external profiler. I can easily profile the actions execute() method, but I don't know how to include the time spent before (in dispatchers, interceptors...) and after (time taken by the servlet corresponding to the view ("jsp time")).
Is there simple way to do this ? And if there isn't, how could I, at least, profile the "jsp time" (maybe a tag I'm not aware of ?) ? I think it would be accurate enough to just take in account action time + jsp time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在调用之前和之后使用过滤器来获取请求进入和响应发出的时间。无需分析器。您可以在 web.xml 中配置过滤器以应用于特定的 URL。
它的粒度很粗,但很有效。
You could use Filters before and after the call to get the time when the request comes in and the response goes out. No profiler needed. And you can configure the Filters in your web.xml to apply to particular URLs.
It's coarse-grained but effective.