多平台统一管理软件接口,如何实现多平台统一管理软件接口
457
2022-12-03
如何基于spring security实现在线用户统计
1.修改web.xml,需要在web.xml描述文件中配置中使得o.s.s.web.session.HttpSessionEventPublisher生效,这样servelt容器将会通知Spring Security session生命周期的事件(通过HttpSessionEventPublisher)
http://
org.springframework.web.context.ContextLoaderListener
org.springframework.security.web.session.HttpSessionEventPublisher
2.修改spring-security.xml,借助于使用sesscvzARJHuion注册跟踪(通过session并发控制),实现显示系统中当前活跃用户的数量。
error-if-maximum-exceeded="false" session-registry-ref="sessionRegistry"/> class="org.springframework.security.core.session.SessionRegistryImpl" /> 3.登录过滤器修改,登录验证通过后向sessionRegistry中添加在线session sessionRegistry.registerNewSession(token, bean); 4.在controller中调用,获取sessionRegistry中存储的用户信息 List
error-if-maximum-exceeded="false" session-registry-ref="sessionRegistry"/>
class="org.springframework.security.core.session.SessionRegistryImpl" /> 3.登录过滤器修改,登录验证通过后向sessionRegistry中添加在线session sessionRegistry.registerNewSession(token, bean); 4.在controller中调用,获取sessionRegistry中存储的用户信息 List
class="org.springframework.security.core.session.SessionRegistryImpl" />
3.登录过滤器修改,登录验证通过后向sessionRegistry中添加在线session
sessionRegistry.registerNewSession(token, bean);
4.在controller中调用,获取sessionRegistry中存储的用户信息
List
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~