in my webapp, using spring @scope : session i have made scope of bean as session. My problem is if i login as admin in one tab of browser to web app and login as normal user in another tab of browser the data are being shared amoung them. How to avoid this.
If i am using two different browsers the problem is not occurring. Kindly suggest where am i doing wrong.
I have placed
@scope session in all bean classes and controller classes
.