package servlets;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class WelcomeServlet extends HttpServlet{
public WelcomeServlet(){
System.out.println("WelcomeServletg 构造函数");
}
@Override
public void init() throws ServletException {
System.out.println("WelcomeServlet.init 函数");
}
protected void doGet(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException{
// response.setContentType("text/html;charset=gb2312");
// PrintWriter out = response.getWriter();
// out.println("欢迎来到本系统!");
System.out.println("WelcomeServlet.doGet 函数");
}
protected void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException{
String account = request.getParameter("account");
System.out.println("WelcomeServlet.doPost 函数");
System.out.println("用户"+account+"请求服务");
}
@Override
public void destroy() {
System.out.println("WelcomeServlet.dostroy 函数");
}
}
huazi-J
- 粉丝: 2074
- 资源: 12
最新资源
- 基于flask和bootstrap的实验室预约系统全部资料+详细文档.zip
- 基于Python+Flask开发的Web应用防火墙全部资料+详细文档.zip
- 基于Python3 + Flask 编写的物业信息管理系统全部资料+详细文档.zip
- 机械设计双层结构摇匀机(sw16可编辑+工程图+BOM)全套设计资料100%好用.zip
- 光伏MPPT仿真-模糊控制
- 储能的削峰填谷作用,如下图所示的削峰填谷数学模型,利用cplex求解混合整数规划可得结果
- 企业网络搭建及应用竞赛模拟答题卡-网络配置与安全管理方案
- 基于Java web高校学生综合管理系统的设计与开发全部资料+详细文档.zip
- 基于Java的大学社团管理系统,高校社团管理全部资料+详细文档.zip
- 基于jsp+javabean+servlet模式的高校学生党员信息管理系统全部资料+详细文档.zip
- 基于java的高校排课教务系统全部资料+详细文档.zip
- 基于Springboot+layui+mybatis+shiro等框架高校教务管理系统全部资料+详细文档.zip
- 基于Springboot+Vue3+MySql搭建高校社团管理系统全部资料+详细文档.zip
- 基于Springboot+Vue高校学科竞赛平台毕业源码案例设计全部资料+详细文档.zip
- 基于SpringBoot+Vue实现的高校毕业生就业服务平台全部资料+详细文档.zip
- 基于Springboot的高校学科竞赛管理系统全部资料+详细文档.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
评论0