How can I close a specific session if I have multiple sessions open:
String userName = (String) session.getAttribute("userName");
HashMap cartList = (HashMap) session.getAttribute("cartList");
If I want to close the cartList session, what code should I use?
I tried using the following:
session.invalidate()but he closes everything.session.removeAttribute("cartList"); he did not close my session.
source
share