整理一下当年的学习笔记之:多个请求使用同一个Servlet

来源:互联网 发布:wifi备份软件 编辑:程序博客网 时间:2024/06/05 06:51

参考此文章点击打开链接

package cn.itcast.web.servlet;import java.io.IOException;import java.lang.reflect.Method;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;@SuppressWarnings("serial")public abstract class BaseServlet extends HttpServlet{@SuppressWarnings({ "unchecked", "rawtypes" })@Overridepublic void service(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {request.setCharacterEncoding("UTF-8");response.setContentType("text/html;charset=UTF-8");//处理响应编码/* * 1、获取参数,用来识别用户想请求的方法 * 2、然后判断是哪一种方法,是哪一个我们就调用哪一个方法 */String methodName = request.getParameter("method");if(methodName == null || methodName.trim().isEmpty()) {throw new RuntimeException("您没有传递method参数!无法确定您想要调用的方法!");}/* * 得到方法名称,是否可通过反射来调用方法? * 1、得到方法名,通过方法名再得到Method类的对象 * * 需要得到Class,然后调用它的方法进行查询!得到Method * * 我们要查询的是当前类的方法,所以我们要得到当前类的Class */Class c = this.getClass();//得到当前类的ClassMethod method = null;try {method = c.getMethod(methodName, HttpServletRequest.class,HttpServletResponse.class);} catch (Exception e) {throw new RuntimeException("您要调用的方法" + methodName + ",它不存在!");}try {/* * 调用method表示的方法 *///正常调用this.addUser(request,response), 反射调用method(this,request,response)String result = (String) method.invoke(this, request,response);//反射调用/* * 获取请求处理方法执行后返回的字符,它表示转发或重定向的路径! * 帮它完成转发或重定向! *//* * 如果用户返回的是字符串null或“”,那么我们什么也不做! */if(result == null || result.trim().isEmpty()) {return;}/* * 查看返回的字符串中是否包含冒号,如果没有,表示转发 * 如果有,使用冒号分割字符串,得到前缀和后缀! * 其中前缀如果是f,表示转发,如果是r表示重定向,后缀就是转发或重定向的路径了! */if(result.contains(":")) {//使用冒号分割字符串,得到前缀和后缀int index = result.indexOf(":");//获取冒号位置String s = result.substring(0, index);//截取出前缀,表示操作String path = result.substring(index+1);//截取出后缀,表示路径if(s.equalsIgnoreCase("r")) {//如果前缀是r,那么重定向response.sendRedirect(request.getContextPath() + path);} else if(s.equalsIgnoreCase("f")) {request.getRequestDispatcher(path).forward(request, response);} else {throw new RuntimeException("你指定的操作:" + s + "当前的版本还不支持");}} else {//没有冒号,默认为转发request.getRequestDispatcher(result).forward(request, response);;}} catch (Exception e) {System.out.println("您调用的方法:" + methodName + ",它的内部抛出了异常!");throw new RuntimeException(e);}}}




public class PageServlet extends BaseServlet {private PageService pageService = new PageService();/* * 指导教师为答辩阶段学生评分前的加载 */public String essayAskGt(HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException {Teacher tea = (Teacher) req.getSession().getAttribute("session_tea");try {req.setAttribute("stuList", pageService.findStuByTid(tea.getTid()));return "f:/jsps/teacher/gtessayask.jsp";} catch (UserException e) {req.setAttribute("msg", e.getMessage());return "f:/jsps/msg.jsp";}}}



1 0
原创粉丝点击