SPRINGMVC's Custom 404 page

Source: Internet
Author: User

It is convenient to use servlet containers such as Tomcat. Configuring in Web. XML

<?XML version= "1.0" encoding= "UTF-8"?><Web-appXmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"xmlns= "Http://java.sun.com/xml/ns/javaee"Xmlns:web= "Http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"xsi:schemalocation= "Http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"version= "2.5">    <Display-name>User Center</Display-name>    <Error-page>        <Error-code>404</Error-code>        < Location>/resources/html/error404.html</ Location>    </Error-page></Web-app>

Content of 404.html pages

<!DOCTYPE HTML><HTML><Head><MetaCharSet= "UTF-8"><title>404 error</title></Head><Body>the resource you are accessing does not exist</Body></HTML>

When accessing a URI that the system does not have, it automatically jumps from 404 pages

Of course, to configure this static resource is not blocked

SPRINGMVC's Custom 404 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.