spring security 获得session所有登入用户

发布于 2022-09-01 22:43:31 字数 1572 浏览 12 评论 0

我想通过spring security 获得所有登录用户
List<Object> slist = sessionRegistry.getAllPrincipals();
sessionRegistry.getAllPrincipals();一直报空指针异常
是不是我的配置文件写错了
下面是配置文件security部分
<!-- 登录认证器 -->

<b:bean id="loginAuthenticationFilter" class="cn.innosoft.orm.api.client.security.TokenUsernamePasswordAuthenticationFilter">
    <b:property name="sessionAuthenticationStrategy" ref="sas"/><!--此配置可实现获取所有登录用户信息 --> 
    <b:property name="authenticationManager" ref="authenticationManager"/>
    <b:property name="authenticationSuccessHandler" ref="specificUrlAuthenticationSuccessHandler"/>
    <b:property name="authenticationFailureHandler" ref="simpleUrlAuthenticationFailureHandler"/>
    <b:property name="usernameParameter" value="token"></b:property>
    <b:property name="filterProcessesUrl" value="/logon_token"></b:property>
    <b:property name="loginUserServer" ref="loginUserServer"></b:property>
</b:bean>

<!--sessionRegistry-->

<b:bean id="sessionRegistry" class="org.springframework.security.core.session.SessionRegistryImpl" /> 
<b:bean id="sas" class="org.springframework.security.web.authentication.session.ConcurrentSessionControlStrategy"/>  
       <b:constructor-arg name="sessionRegistry" ref="sessionRegistry" />  
    <b:property name="maximumSessions" value="1" />  
    <b:property name="exceptionIfMaximumExceeded" value="true" /> 
</b:bean> 

求大神指点

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

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

发布评论

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

评论(1

趁年轻赶紧闹 2022-09-08 22:43:31

原来在配置文件bean中多了一个斜杠,使标签不完整,启动报错,低级错误,但是却是致命的

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