Reputation: 273
Is there a way for me as an administrator of a web application to programatically manually disable another user's session (log him out)?
I'm using Tomcat web server and Spring MVC.
Upvotes: 0
Views: 1083
Reputation: 16604
You can login to the Tomcat Web Application Manager (usually under /manager/html
path), find the row for the webapp in question, click on the number indicating number of sessions. Find the session for the user you want to logout and Invalidate that session.
Upvotes: 2