自动测试服务器中用到用户的登录问题
在servlet中写上:
String username=request.getParameter("username");
//创建一个session对象
HttpSession session = request.getSession();
//将用户名保存到session中
session.setAttribute("username",username);
在jsp页面中写上:
<%
String username=(String)session.getAttribute("username");
if(username==null || username.equals("")){
request.getRequestDispatcher("/info/loginindex.jsp").forward(request,response);
return;
}
%>
如果都用jsp
一个网页中把变量username以username为名字保存在session上
<% session.setAttribute("username",username); %>
在另一个页面中通过getAttribute方法取得username的值
<% String username = (String)session.getAttribute("username"); %>