JSP, when the page is 404 or 500. Set jump to Error prompt page

Source: Internet
Author: User

The best is in the Web. xml file to configure the error code of the jump page, first set up a page with 500 errors, the prompt error, and then the Web. xml file configuration, configured as follows

First, the error code to configure the Error-page
<error-page>
<error-code>404</error-code>
<location>/NotFound.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/NotFound.jsp</location>
</error-page>

The above is configured to jump to the error handling page notfound.jsp when the system has a 404 error.
Second, configure Error-page by the type of exception
<error-page>
<exception-type>java.lang.NullException</exception-type>
<location>/error.jsp</location>
</error-page>

Exception-type: Indicates the type of exception.

Location: Indicates where the wrong path is.

Http://wenwen.sogou.com/z/q242233030.htm

JSP, when the page is 404 or 500. Set jump to Error prompt page

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.