首页 > 其他 > 详细

BaseServlet方法分发

时间:2016-11-09 22:49:37      阅读:204      评论:0      收藏:0      [点我收藏+]

BaseServlet.java

 1 package org.guangsoft.controller;
 2 
 3 import java.io.IOException;
 4 import java.lang.reflect.InvocationTargetException;
 5 import java.lang.reflect.Method;
 6 
 7 import javax.servlet.ServletException;
 8 import javax.servlet.http.HttpServlet;
 9 import javax.servlet.http.HttpServletRequest;
10 import javax.servlet.http.HttpServletResponse;
11 
12 public class BaseServlet extends HttpServlet
13 {
14     /**
15      * 将请求方法到不同的servlet中的不同方法
16      */
17     @Override
18     protected void service(HttpServletRequest request, HttpServletResponse response)
19             throws ServletException, IOException
20     {
21         request.setCharacterEncoding("UTF-8");
22         response.setCharacterEncoding("UTF-8");
23         response.setContentType("text/html; charset=utf-8");
24         try
25         {
26             //获取调用的方法名
27             String option = request.getParameter("option");
28             //获取真实调用的servlet字节码文件
29             Class clazz = this.getClass();
30             //获取调用的方法
31             Method method = clazz.getDeclaredMethod(option, HttpServletRequest.class,HttpServletResponse.class);
32             //执行调用的方法
33             method.invoke(this, request, response);
34         }
35         catch (Exception e)
36         {
37             e.printStackTrace();
38         }
39     }
40 }

 

BaseServlet方法分发

原文:http://www.cnblogs.com/guanghe/p/6048853.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!