用户类型传参,然后写if语句判断参数的值,根据值,选择跳转的页面。例如:
void doPost() {
String userType = request.getParameter("type");
if ("1".equals(userType)) { //common user
response.sendRedirect("index.jsp");
} else if ("2".equals(userType)) { //admin
response.sendRedirect("index2.jsp");
} else {
//return error.
}
}
可以把上面的重定向换成内跳转
校验登录的时候获取登录用户的类型,根据类型forward到相应的页面去
管理员是固定的帐号?可以根据此账户做判定
比如帐号为admin
如果你判断是admin,request.getRequestDispatcher("你要跳转的页面").forward();
一般都是用户信息保存在session中,获取session 转化为用户对象,然后按属性判断是管理员还是普通用户
大概就是类似:
if (判断用户)
{
response.redirect(不同页面)
}