Confusion about spring MVC-difference between/AND/* in URL-Pattern

Source: Internet
Author: User

I also encountered the above problems, so I recorded them.
always phenomenon is:
spring uses forward ("/WEB-INF/JSP /*. JSP ")
while forward certainly goes through the Web. XML ing,
then, when the URL matches,

URL-pattern

/

URL-pattern
>

does not match *. JSP does not enter Dispatcherservlet class

URL-pattern

/*

URL-pattern

Yes
match *. JSP. As a result, enter spring's dispatcherservlet
class, find the controller, and connect The corresponding controller cannot be found, so an error is reported.

I tried it and changed it <
URL-Pattern
>
/
</
URL-Pattern
>
Sure enough, no error will be reported. Alas, I thought it could not be solved. For this reason, I changed it to velocity as the view. If you forget it, continue to use velocity, which is simple.

In short, there is little knowledge about URL ing in Web. xml:
<URL-pattern>/</url-pattern> matches the path-type URL such as/login, and does not match the suffix-type URL such as *. jsp.
<URL-pattern>/* </url-pattern> matches all urls: URL with path type and suffix type (including/login ,*. JSP ,*. JS and *. HTML, etc)

 

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.