求助: request.getRequestDispatcher().forward(request, response) 无法跳转

ernstcdhk 2009-05-30 09:37:56
小弟问个菜鸟问题:

在Servlet里用request.getRequestDispatcher().forward(request, response) 无法跳转到指定的页面。
这是一个用于登录验证用的,但是密码和用户名都输入正确时,还是跳转到 Login.jsp,希望高手帮忙解决问题

源文件:

package ernst.MVCBBS.control;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@SuppressWarnings("serial")
public class LoginServlet extends HttpServlet {


/**
* Constructor of the object.
*/
public LoginServlet() {
super();
}

/**
* Destruction of the servlet. <br>
*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}

/**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

String action = request.getParameter("action");

if(action != null && action.equals("login")) {
String userName = request.getParameter("userName");
String userPwd = request.getParameter("userPwd");
if(userName == null || !userName.equals("admin")) {
request.setAttribute("error", "NOUSER");
request.getRequestDispatcher("Login.jsp").forward(request, response);
} else if(userPwd == null || !userPwd.equals("admin")) {
request.setAttribute("error", "PWD");
request.getRequestDispatcher("Login.jsp").forward(request, response);
} else {
request.getSession().setAttribute("user", userName);
request.getRequestDispatcher("ArticleTreeShow.jsp").forward(request, response);
}
}
}

/**
* Initialization of the servlet. <br>
*
* @throws ServletException if an error occurs
*/
public void init() throws ServletException {
// Put your code here
}

}
...全文
352 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
valen926 2009-05-30
  • 打赏
  • 举报
回复
不是等于null
valen926 2009-05-30
  • 打赏
  • 举报
回复
package ernst.MVCBBS.control; 

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@SuppressWarnings("serial")
public class LoginServlet extends HttpServlet {


/**
* Constructor of the object.
*/
public LoginServlet() {
super();
}

/**
* Destruction of the servlet. <br>
*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}

/**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

String action = request.getParameter("action");

if(action != null && action.equals("login")) {
String userName = request.getParameter("userName");
String userPwd = request.getParameter("userPwd");
if(userName == ""|| !userName.equals("admin")) {
request.setAttribute("error", "NOUSER");
request.getRequestDispatcher("Login.jsp").forward(request, response);
} else if(userPwd == ""|| !userPwd.equals("admin")) {
request.setAttribute("error", "PWD");
request.getRequestDispatcher("Login.jsp").forward(request, response);
} else {
request.getSession().setAttribute("user", userName);
request.getRequestDispatcher("ArticleTreeShow.jsp").forward(request, response);
}
}
}

/**
* Initialization of the servlet. <br>
*
* @throws ServletException if an error occurs
*/
public void init() throws ServletException {
// Put your code here
}

}

81,091

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧