gpt4 book ai didi

java - 如何重定向jsp

转载 作者:行者123 更新时间:2023-11-28 22:48:13 25 4
gpt4 key购买 nike

我有这样的 LoginServlet:

package servlets;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet("/LoginServlet")
public class LoginServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

public LoginServlet() {
super();
// TODO Auto-generated constructor stub
}

protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

}

protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String username = request.getParameter("username");
String password = request.getParameter("password");

if (username.equals("gogikole") && password.equals("1234")) {
response.sendRedirect("mainMenu.jsp");
return;
}
}
}

像这样的 login.jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login page</title>
</head>
<body>
<form method="post" action="LoginServlet"></form>
<table>
<tr>
<td>User name</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</body>
</html>

出于某种原因,当我输入正确的用户名:(gogikole) 和密码:(1234) 并单击提交按钮时,它不会将我重定向到 mainMenu.jsp

当我点击按钮时,什么也没有发生,它只是停留在登录页面,就像我什至没有点击或输入任何东西一样。

如何解决该问题并在我点击提交按钮(登录)时重定向?

我创建了 mainMenu.jsp,现在它是一个几乎空白的页面,只有“欢迎”消息。

最佳答案

您的提交按钮没有提交表单。即,您已立即关闭 form:

<form method="post" action="LoginServlet"></form>

问题是您的表单输入和提交按钮在 form 之外,您必须按以下方式附上。

<form method="post" action="LoginServlet">
<table>
<tr>
<td>User name</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</form>

关于java - 如何重定向jsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50225106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com