Configuration of Servlet-mapping Url-pattern in Web. XML __web

Source: Internet
Author: User

Servlet-mapping provides a URL for the servlet class to access your servlet in the address bar, for example:
<servlet>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>com.hx.webfrom.HelloWorld<servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>/hello<servlet-class>
</servlet-mapping>
Enter Http://localhost:8080/hello in the address bar to access the

Tomcat presses/index.jsp to find mapping in Web. XML, find name:   
  <servlet-mapping>   
  <servlet-name>org.apache.jsp.index_jsp</servlet-name>   
  <url-pattern >/index.jsp</url-pattern>   
  </servlet-mapping>   
     
  Find class by name:   
  <servlet>   
  <servlet-name> Org.apache.jsp.index_jsp</servlet-name>   
  <servlet-class>org.apache.jsp.index_ Jsp</servlet-class>   
  </servlet>   
    
  After finding the org.apache.jsp.index_jsp, the object is generated, and the objects such as the generated request,response are initialized with/init (), and the O Method (Doget (), DoPost ()).       For example: your project is under Webapps/javatest, the browser directly accesses: Http://127.0.0.1:8080/javatest/hello

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.