Spring Security中的最大并发用户数
我在我的项目中使用Spring Security 3.0,并且我限制用户最多只能有一个会话。配置如下:
<security:session-management> <security:concurrency-control error-if-maximum-exceeded="true" max-sessions="1"/>
</security:session-management>
我想在达到最大会话数时打印自定义消息(春季未默认提供)。请帮忙。
提前致谢!!
回答:
请把这个放在你的 messages.properties
ConcurrentSessionControlStrategy.exceededAllowed=This account is already using by someone.
它会显示“此帐户已被某人使用”。你可以给你想要的东西。
也别忘了配置 Resourcebundle
以上是 Spring Security中的最大并发用户数 的全部内容, 来源链接: utcz.com/qa/398384.html