サーブレットは、ブラウザーを閉じたとき (Cookie を削除していないとき) 以外は期待どおりに動作しており、セッションが失われます。セッションを無効にするか、Cookie を削除するまで、セッションを無期限に保存するにはどうすればよいですか?
@WebServlet(name="ServletOne", urlPatterns={"/", "/ServletOne"})
public class ServletOne extends HttpServlet {
private static final long serialVersionUID = 1L;
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
HttpSession session = request.getSession(true);
String newValue = request.getParameter("newValue");
if (session.isNew()) {
session = request.getSession(true);
session.setAttribute("myAttribute", "value");
}
if (newValue != null)
session.setAttribute("myAttribute", newValue);
RequestDispatcher rd = request.getRequestDispatcher("test.jsp");
rd.forward(request, response);
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
私のJSP:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
val == <c:out value="${myAttribute}"></c:out><br>
<form action="ServletOne" method="POST">
<input type="text" name="newValue" />
<input type="submit" />
</form>
</body>
</html>
ブラウザを閉じて再度開くと、myAttribute
常にデフォルトの「値」に設定されます。