I am using Spring security 3.1 along with Spring 3.
I am facing a problem where I am logging in to the system using one browser , I am able to log into the system.And i
It's hard to guess without actually looking at your classes. But maybe your CustomAuthenticationProvider
- which is singleton by default - is keeping the first logged in user object in memory instead of looking at the security context.
You didn't say, but I guess when you open the second browser, the logged in user panel (if there's any) shows the user that was logged in the first browser, right?