gpt4 book ai didi

java servlet资源调度程序在正确的位置包含html

转载 作者:行者123 更新时间:2023-12-02 05:09:54 24 4
gpt4 key购买 nike

我有一个非常基本的登录 servlet

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

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

// get request parameters for userID and password
String username = request.getParameter("username");
String password = request.getParameter("password");

if (username.equals("marti") && password.equals("bosch")) {
response.sendRedirect("login_success.jsp");
} else {
RequestDispatcher rd = getServletContext().getRequestDispatcher(
"/login.html");
PrintWriter out = response.getWriter();
out.println("<font color=red>Either user name or password is wrong.</font>");
rd.include(request, response);
}
}
}

当我从 login.html 调用 servlet 时:

<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<form action="LoginServlet" method="post">
<p>Username: <input type="text" name="username"> </p>
<p>Password: <input type="password" name="password"> </p>
<p><input type="submit" value="Login"></p>
</form>
</body>
</html>

如果我输入正确的用户名和密码,浏览器会正确呈现login_success.jsp。但是,当我没有输入正确的用户名和密码时,浏览器会将未渲染的 html 显示为纯文本:

<font color=red>Either user name or password is wrong.</font>
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<form action="LoginServlet" method="post">
<p>Username: <input type="text" name="username"> </p>
<p>Password: <input type="password" name="password"> </p>
<p><input type="submit" value="Login"></p>
</form>
</body>
</html>

如何使 LoginServlet 将消息放置在正确的位置(在 body 标记之后)?谢谢

最佳答案

确切地说,您需要将其作为 HTML 文档的内容:

<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<font color=red>Either user name or password is wrong.</font>
<form action="LoginServlet" method="post">
<p>Username: <input type="text" name="username"> </p>
<p>Password: <input type="password" name="password"> </p>
<p><input type="submit" value="Login"></p>
</form>
</body>
</html>

此外,一个<font>标签在 HTML5 中已被弃用。

编辑:

所以要么你需要 sendRedirect到包含错误消息的页面:

response.sendRedirect("login_error.jsp");  //containing exactly the same html I posted

或者修改您的表单 JSP,以便在身份验证失败后呈现附加错误消息。您可以通过将参数从 Servlet 传递到 JSP 来实现这一点。引用这个thread .

关于java servlet资源调度程序在正确的位置包含html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27422641/

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