How to configure servlet and servlet-map labels in web. xml

Source: Internet
Author: User

<Servlet>
<Description> This is the description of my J2EE component </description>
<Display-name> This is the display name of my J2EE component </display-name>
<Servlet-name> ServletTest </servlet-name>
<Servlet-class> com. xyc. servlet. ServletTest </servlet-class>
</Servlet>

<Servlet-mapping>
<Servlet-name> ServletTest </servlet-name>
<Url-pattern>/servlet </url-pattern>
</Servlet-mapping>

Assume that your web project is named goodweb and a servlet is set to com. xyc. servlet. servletTest, the above is the corresponding configuration, where the <servlet-name> value can be written at will, however, make sure that the servlet-name in <servlet> is consistent with the servlet-name value in <servlet-mapping>. When you enter http: // 127.0.0.1/goodweb/servlet in the address bar, you will find the servlet-name through/servlet in servlet-mapping, and then find the corresponding servlet class.


 



<

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.