Servlet通过反射动态调用方法
开发工具与关键技术:java、 elipse2019、jdk1.8
作者:Amewin
撰写时间:2019年6月6日
说明:
本次讲解分为三种讲解
两种常用的反射调用方法和第三种封装好的调用方法
只是代码讲解 如果需要详细的类方法使用及说明,请阅读API,谢谢。
方法一:
@Override
public void service(ServletRequest req, ServletResponse resp) throws ServletException, IOException {
//获取用户传递的请求参数
String methodName = req.getParameter("method");
//通过方法名获取到方法的对象
//获取当前类的Class对象
Class<?> cla = this.getClass();
//获取cla的方法(Method对象)
//getDeclaredMethod需要两个参数,方法名和参数名
//因为在java需要通过方法名和参数列表来确定一个方法
try {
//获取方法对象
Method method = cla.getDeclaredMethod(methodName, HttpServletRequest.class , HttpServletResponse.class);
//设置方法的访问权限
method.setAccessible(true); //该方法可以取消Java的权限控制检查,就可以调用类的私有属性和方法
//调用方法
//invoke用于调用一个方法,第一个参数时要调用方法的对象,剩下是调用方法需要的参数
method.invoke(this,req,resp);//方法调用,传递调用对象及参数
} catch (Exception e) {
e.printStackTrace();
}
}
方法二:
@Override
public void service(ServletRequest req, ServletResponse resp) throws ServletException, IOException {
try {
// 加载类
System.out.println("service()--执行数据查询方法!");
//设置请求编码格式
req.setCharacterEncoding("utf-8");
//设置响应编码格式
resp.setContentType("text/html;charset=utf-8");
//获取用户传递的请求参数
String opType = req.getParameter("type");
System.out.println(opType);
Class<?> printClass = this.getClass();;
Method method = printClass.getDeclaredMethod(opType, HttpServletRequest.class , HttpServletResponse.class);
//设置方法的访问权限
method.setAccessible(true);
method.invoke(this, req , resp);
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
封装其反射调用方法:
public static Object invoke(String className, String methodName, Object...params){
try {
Class<?> c = Class.forName(className);
Object obj = c.newInstance();
Method[] methods = c.getDeclaredMethods();
Method callMethod = null;
for(Method method:methods){
if(method.getName().equals(methodName)){
callMethod = method;
break;
}
}
callMethod.setAccessible(true);
return callMethod.invoke(obj, params);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
}
return null;
}
@Override
public void service(ServletRequest req, ServletResponse resp) throws ServletException, IOException {
req.getAttribute("utf-8");
resp.setContentType("text/html;utf-8");
resp.setContentType("text/html;charset=utf-8");
//执行方法名称
String opType = req.getParameter("type");
invoke("com.duxiu.servlet.WardServlet", opType, req , resp);
}
调用封装反射方法:
@Override
public void service(ServletRequest req, ServletResponse resp) throws ServletException, IOException {
req.getAttribute("utf-8");
resp.setContentType("text/html;utf-8");
resp.setContentType("text/html;charset=utf-8");
//执行方法名称
String opType = req.getParameter("type");
invoke("com.duxiu.servlet.WardServlet", opType, req , resp);
}
注意事项
使用反射动态调用方法,会出现一些莫名的异常
在这里 特别注意
抛出异常时记得 增加 throws IllegalStateException, IOException
不然会出现
// 修改
public void updateWard(ServletRequest req, ServletResponse resp) throws IllegalStateException, IOException, ServletException {
String wardid = req.getParameter("wardID");
String wardMc = req.getParameter("wardMC");
String wardNum = req.getParameter("wardNum");
Ward ward = new Ward(Integer.parseInt(wardid), wardMc, wardNum);
JSONArray jsonArray = JSONArray.fromObject(state);
resp.getWriter().write(jsonArray.toString());
}