Explain session destroy in Servlets
By Ramakrishna on Sep 2, 2008 in Session Interview Questions
Question: How you can destroy the session in Servlet?
Answer: You can call invalidate() method on the session object to destroy the session. e.g. session.invalidate();
