美文网首页JSP专题
指定错误页面

指定错误页面

作者: 神坛下的我 | 来源:发表于2018-08-17 11:46 被阅读0次

    index.jsp

    <body>
        <form action="inde.jsp" method="post">
        <button type="submit">Submit</button>
        <button type="reset">Reset</button>
        </form>
    </body>
    

    error.jsp

    <body>
    <h1>404</h1>
    </body>
    

    web.xml

    <error-page>
        <error-code>404</error-code>
        <location>/error.jsp</location>
      </error-page>
    

    相关文章

      网友评论

        本文标题:指定错误页面

        本文链接:https://www.haomeiwen.com/subject/ukpzbftx.html