// 登录成功后,将用户名存储在 HttpSession 中 HttpSession session = request.getSession(); session.setAttribute("username", username); // 假设这里的 username 是登录成功的用户名 // 在后续页面中获取保存在 HttpSession 中的用户名 HttpSession session = request.getSession(); String username = (String) session.getAttribute("username");
标签:学到,username,存储,用户名,request,session,账号密码,HttpSession From: https://www.cnblogs.com/muzhaodi/p/17863296.html