Servlet生命周期
Servlet继承自 HttpServlet
- 初始化方法 init
- 服务方法 service
- 销毁方法 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项目