是否可以通过编程方式设置会话并发? 使用像
这样的XML配置很容易做到这一点<session-management>
<concurrency-control max-sessions="1" error-if-maximum-exceeded="true" />
</session-management>
但我需要的是基于数据库中的某些属性我想允许/禁止并发会话。
答案 0 :(得分:0)
您可以将Spring 3.1 java配置用于spring安全性,从而使您拥有并发控制实现而不是ConcurrentSessionControlStrategy
。有关java配置示例,请参阅this SO answer。