-2
HttpSession sess = request.getSession();
String username=request.getParameter("firstname");
String password=request.getParameter("pwd");
boolean flag;
if(username!=null && password!=null){
flag=checking.check(username, password); //here i check if user exists in //the data base
}else{
flag=false;
}
if(flag){
put2.sessionAttr(username,password,sess); // here i call a java class through bean put2 and set attributes to the session
response.sendRedirect("index.jsp");
}
在我將屬性添加到會話結束
我設置的用戶名的屬性..
在關閉瀏覽器而不註銷之後,我輸入相同的URL並調用以下j SP通過Ajax
但會議似乎沒有屬性的所有.. 所以我必須輸入用戶名和密碼再次..
你爲什麼再問這個問題? –