在Servlet中使用HttpSession可以通過以下步驟實現:
HttpSession session = request.getSession();
session.setAttribute("key", "value");
String value = (String)session.getAttribute("key");
session.removeAttribute("key");
session.setMaxInactiveInterval(60); //設置session過期時間為60秒
session.invalidate(); //使session失效
通過上述步驟,您可以在Servlet中使用HttpSession來存儲和獲取數據,并對session進行管理。