1

如何查看我的 JBoss AS 7.1 实例的 http-session 计数。

我在 JBoss Application Server 7.1 管理控制台上找不到任何东西。

上次我使用 JBoss AS 是 4.3 版。

谢谢。

4

2 回答 2

2

如果您正在谈论特定应用程序,那么您可以使用“HttpSessionListener”或使用“HttpSessionBindingListener” http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpSessionBindingListener.html

于 2012-05-11T21:59:31.573 回答
0

这将从 servlet 容器内部查看会话。另一方面,容器也应该能够计算它们。旧的 JBoss 能够公开有关 JMX bean 的信息

jboss.web:host=localhost,path=/<context-name>,type=Manager

具有名为“activeSessions”的属性。

在最近的 JBoss 上,该值在不同的位置可用,最好在这里解释: https ://developer.jboss.org/thread/219739?_sscc=t

于 2016-10-17T09:35:15.980 回答