Servlet生命周期

2022-05-05 20:20:06 浏览数 (1)

Servlet生命周期

Servlet继承自 HttpServlet

  1. 初始化方法 init
  2. 服务方法 service
  3. 销毁方法 destroy

doGet和doPost方法

同样需要继承 HttpServlet

doGet方法:form中method属性为get时、或者直接在地址栏中输入路径,需要传递参数时,直接在路径后面拼接 “?name=zhang&pwd=666” 这样的参数字符串

localhost:8080→端口号 Work→项目名称 MethodServlet→class名称 ?name=zhang&pwd=666→需要返回的数值

doPost:form中method属性为post

Servlet代码页

配置web.xml文件

找到WebRoot→WEB-INF→web.xml点击Source 添加以下代码

运行此Servlet项目

0 人点赞