url uri
url:统一资源定位符(网址)
uri:统一资源标识符
http://localhost:8080/xxx.html
-
协议 主机IP 端口号 uri(当前应用的资源路径)
servlet
服务端的小应用程序,作用是处理服务端的请求和相应
生命周期:
实例化->初始化(init)->服务(service)->销毁(destroy)
servlet三种创建方式:
1.实现javax.servlet.Servlet接口
2.继承javax.servlet.GenericServlet类(适配器模式)
3.继承javax.servelt.Http.HttpServlet类(模板方法设计模式)
线程安全:不使用全局变量,使用局部变量