集群中的用户(会话)计数
有没有一种好方法可以获取集群中运行的 Java Web 应用程序的登录用户数?
我编写了一个带有静态字段的简单 HttpSessionListener
,但我认为这在集群中不起作用。我可以看到有一个 Spring Security 解决方案,但我在一些论坛上读到这在集群中仍然不行。
我必须在其中实现此用户计数的产品试图独立于应用程序服务器,目前我们支持 Tomcat、Weblogic 和 JBoss。目前我需要一个针对Weblogic 10.3集群的解决方案。
Is there a good way to get the logged in user count in a Java web application that is running in a cluster?
I wrote a simple HttpSessionListener
with a static field, but I suppose this doesn't work in cluster. I can see there is a Spring Security solution, but I read in some forums that this is still not ok in cluster.
The product in which I have to implement this user count is trying to be application server independent, currently we support Tomcat, Weblogic and JBoss. At the moment I need a solution for Weblogic 10.3 clusters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在数据库中维护计数器,该计数器将在集群环境中工作。
You can maintain the counter in database which will work in cluster env.
一个简单的教程,演示如何确定 Java Web 应用程序中的活动用户/会话。
在三个不同的浏览器上运行以下 servlet 将提供如下输出:(参见下图)
程序输出:
了解更多:http: //www.hubberspot.com/2013/09/how-to-define-active-users-sessions.html
A simple tutorial to demonstrate how to determine active users / sessions in a Java Web Application.
Running the below servlet on three different browsers will provide output as : (see fig below)
Output of the program :
For more: http://www.hubberspot.com/2013/09/how-to-determine-active-users-sessions.html