Servlet的执行过程:
1.客户端访问Tomcat访问地址:http://localhost:8080/firstServlet/hello
2.Tomcat解析客户端的访问地址
3.Tomcat找firstServlet应用。
4.找之前先搜索web.xml
5.接着就找到自己的类。
6.执行service
Servlet的执行过程:
1.客户端访问Tomcat访问地址:http://localhost:8080/firstServlet/hello
2.Tomcat解析客户端的访问地址
3.Tomcat找firstServlet应用。
4.找之前先搜索web.xml
5.接着就找到自己的类。
6.执行service