超链接 `<a>` 未调用映射的 Servlet。返回 404:找不到资源 [重复]

Posted

技术标签:

【中文标题】超链接 `<a>` 未调用映射的 Servlet。返回 404:找不到资源 [重复]【英文标题】:Hyperlink `<a>` not invoking a mapped Servlet. Returning 404: Resource not found [duplicate] 【发布时间】:2021-03-07 16:12:02 【问题描述】:

标题上的内容。当我点击一个链接时,我试图调用一个 servlet 来创建一个页面。下面附上代码。

html

<html>
<head>
    <title>NavBar</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="sheet.css">
</head>
<body>        
    <section class="ft_root">
        <div class="ft">
            <ul>
                <li><a href="/entry/test.html"> 1 </a></li>
                <li><a href="#"> 2 </a></li>
                <li><a href="#"> 3 </a></li>
                <li><a href="#"> 4 </a></li>
                <li><a href="#"> 5 </a></li>

            </ul>

        </div>

</html>

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_3_1.xsd"
 version="3.1">
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <servlet>
        <servlet-name>entry_page_gen</servlet-name>
        <servlet-class>Servlets.entry_page_gen</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>entry_page_gen</servlet-name>
        <url-pattern>/entry/*</url-pattern>
    </servlet-mapping>       
</web-app>

entry_page_gen.java

package Servlets;

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

/**
 *
 * @author oras
 */
@WebServlet(name = "entry_page_gen", urlPatterns = "/entry/*")
public class entry_page_gen extends HttpServlet 

    /**
     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
     * methods.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException 
        response.setContentType("text/html;charset=UTF-8");
        try (PrintWriter out = response.getWriter()) 
            /* TODO output your page here. You may use following sample code. */
            out.println("<!DOCTYPE html>");
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet entry_page_gen</title>");            
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet entry_page_gen at " + request.getContextPath() +     "</h1>");
            out.println("</body>");
            out.println("</html>");
        
    

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign     on the left to edit the code.">
    /**
     * Handles the HTTP <code>GET</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException 
        processRequest(request, response);
    

    /**
     * Handles the HTTP <code>POST</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException 
        processRequest(request, response);
    

    /**
     * Returns a short description of the servlet.
     *
     * @return a String containing servlet description
     */
    @Override
    public String getServletInfo() 
        return "Short description";
    // </editor-fold>



entry_page_gen.java 存储在一个名为 Servlets 的包中。

怎么了?如果需要更多信息,请询问。我不想用可能不需要的信息来解决这个问题。

需要注意的一点是,如果我将Web.xml -&gt; &lt;servlet-mapping&gt; -&gt; &lt;url-pattern&gt; 更改为/entry_page_gen 并使用action 参数从&lt;form&gt; 调用servlet,一切正常。

P.S:我在创建上述代码时提到了this question。

【问题讨论】:

那么,您希望显示 HTML 文件的内容而不是 servlet 中创建的内容,对吧? 您的 Web 应用程序是否部署为 servlet 容器的 ROOT 应用程序? 【参考方案1】:

这里有一个适合你的解决方案。

entry_page_gen.java(顺便说一下,您应该更改此名称以遵循 java 约定)

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException 
    //processRequest(request, response);
     response.sendRedirect("hello.html");
     return;

配置:

输出:

注意事项:

在图像中,由于方法中的重定向,您会看到 URL http://localhost:8080/web-project/hello.html,但您可以通过以下方式访问此元素:http://localhost:8080/网络项目/条目

配置说明可以看这里: https://***.com/a/26329628/1670134

【讨论】:

【参考方案2】:

正如here 中的回答,初始斜杠字符指的是来自基本 URL 的路径(默认情况下是域名,除非使用&lt;base&gt; HTML 元素进行更改)。因此,如果您的应用 URL 是 http://www.example.com/myapp,则锚点 &lt;a href="/entry/test.html"&gt; 1 &lt;/a&gt; 将引用 http://www.example.com/entry/test.html,因此不会调用 servlet。

您可以将锚点的 href 更改为 &lt;a href="/myapp/entry/test.html"&gt; 1 &lt;/a&gt;

【讨论】:

以上是关于超链接 `<a>` 未调用映射的 Servlet。返回 404:找不到资源 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

使用js设置ul标签的显示或隐藏和超链接调用js文件的方法

CSS a:link无法修改链接颜色

div设定onclick后,如何点其中的超链接不触发onclick

jsp中如何给背景图上的超链接添加点击事件?

超链接启用邮箱一键拨号

body之内联标签a