Struts2性能问题

发布于 2024-10-19 10:31:09 字数 191 浏览 1 评论 0原文

我在我的应用程序中使用 Struts2。当用户数量较少时它工作正常。 但实时情况下,大约有 3000 个请求到达应用程序。一段时间后,我的 JVM 崩溃了。我检查了线程转储,在执行 OGNL 表达式时,似乎有很多线程被阻塞。

在挑选时间内,CPU 利用率始终在 130% 左右。请建议我在高度可扩展的环境中运行 Stuts2 应用程序的最佳方法是什么。

I am using Struts2 in my application .it's working fine when there is less number of users.
But in real time there are around 3000 requests hiting to the application.And after some time my JVM get crashed.I checked the thread dump it seems to be lot of thread blocked while executing the OGNL expression.

And the CPu utilization is always around 130% in the pick times.Please suggest me what will be the best approach to run stuts2 application in highly scalable enviroment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

邮友 2024-10-26 10:31:09
  • 让我们看看这个,struts.ognl.enableExpressionCache 的默认设置

### 缓存解析的 OGNL 表达式,但可能导致内存泄漏

### 如果应用程序生成许多不同的表达式

struts.ognl.enableExpressionCache=true

  • 或者尝试按照 性能调整
  • 或者使用 Java Melody 监控您的 Struts2 应用程序,可以通过添加拦截器来监控 Struts2 操作。
  • Let's see this, the default setting for struts.ognl.enableExpressionCache

### Caches parsed OGNL expressions, but can lead to memory leaks

### if the application generates a lot of different expressions

struts.ognl.enableExpressionCache=true

  • Or try optimize your Struts2 application by instructions in Performance Tuning.
  • Or monitoring your Struts2 application with Java Melody, Struts2 action can be monitored by add an interceptor.
憧憬巴黎街头的黎明 2024-10-26 10:31:09

您使用的是哪个版本的 Struts2? OGNL 表达式语言存在一些已知问题。

在 struts2 邮件列表上关注此主题,它可能会帮助您 OGNL 讨论

最近 OGNL 的性能得到了很大的提高,所以只需指定 Struts2 版本

Which version of Struuts2 you are using? there were some known issue with OGNL expression language.

follow this thread on struts2 mailing list it might help u OGNL Discussion

lately there has been a lot of performance improvement with OGNL so just specify the Struts2 version

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文