0

I have multiple applications (wars) deployed on same Tomcat application server. Each application has form login and uses Spring Security to authenticate. There is a centralized application (not in same Tomcat) from which Spring Security checks user credentials.

Is there a simple way to keep track on user's sessions in those wars and invalidate user's session within each war in case user logs off from one?

Nordkraft
  • 125
  • 2
  • 9

1 Answers1

0

I started using Spring Session. It integrates with Spring Security and offers a way to store users's sessions to a database.

Nordkraft
  • 125
  • 2
  • 9