在Servlet中管理會話可以通過以下幾種方式實現:
HttpSession session = request.getSession();
session.setAttribute("key", "value");
String value = (String) session.getAttribute("key");
Cookie cookie = new Cookie("sessionId", "12345");
response.addCookie(cookie);
Cookie[] cookies = request.getCookies();
String url = response.encodeURL("http://example.com/page");
response.sendRedirect(url);
ServletContext context = getServletContext();
context.setAttribute("key", "value");
String value = (String) context.getAttribute("key");
通過以上方式可以在Servlet中管理會話,根據具體需求選擇合適的方式來管理會話。