Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何防止 Wicket 中同一会话中的用户多次登录?
您可以将 spring security 与 wicket 集成。Spring security 会自动处理它。
您可以在数据库中创建一个表来保存登录用户的 ID。当用户登录时,检查他的 id 是否在所述表中,否则将他的 id 插入该表中。用户注销后,您还需要从表中删除用户的 id