为啥我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制]

Posted

技术标签:

【中文标题】为啥我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制]【英文标题】:Why i am getting 404 found error in JSP&servlets in IntelliJ IDEA Ultimate 2020.2? [duplicate]为什么我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制] 【发布时间】:2021-02-06 15:58:42 【问题描述】:

我正在 IntelliJ IDEA Ultimate 2020.2 中的 jsp 和 servlet 中创建简单的登录 Web 应用程序。

以下是我的index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Calculator</title>
</head>
<body>
<form method="post" action="/LoginServlet">
    UerName:<input type="text" name="t1"><br>
    Password:<input type="text" name="t2"><br>
    <input type="submit" value="Ok"><br>
</form>
</body>
</html>

这是我的 servlet。它位于 src->main->java->francis

@WebServlet(name = "LoginServlet")
public class LoginServlet extends HttpServlet 
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException 
        PrintWriter out = response.getWriter();
        out.println("Welcome.....");
    

Web.xml 是

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <servlet>
        <servlet-name>LoginServlet</servlet-name>
        <servlet-class>francis.LoginServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>LoginServlet</servlet-name>
        <url-pattern>/LoginServlet</url-pattern>
    </servlet-mapping>

</web-app>

但是输出屏幕是...

请帮助我。提前致谢

【问题讨论】:

直接访问localhost会得到什么? 第一页 index.jsp 运行,当我点击添加按钮时,上面的输出来了 ***.com/a/42688676/104891 有帮助吗? 是的。谢谢。但在我的情况下,给定的配置是正确的。 【参考方案1】:

替换

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

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

它会被自动翻译成the-context-path/LoginServlet。请注意,您放入action 属性的路径是相对于上下文路径的。

【讨论】:

以上是关于为啥我在 IntelliJ IDEA Ultimate 2020.2 的 JSP&servlet 中发现 404 错误? [复制]的主要内容,如果未能解决你的问题,请参考以下文章

为啥 IntelliJ Idea 找不到 GO SDK 的位置?

为啥 Intellij Idea 的嵌入式终端中只有 75 个可见字符?

为啥我在 intelliJ logcat 视图中看不到任何错误?

如何用intellij idea 12 写一个helloworld,为啥新建不出来类啥的呢

为啥intellij idea安装eclipse code formatter插件装不上

IntelliJ IDEA 为啥打不开jsp页面