method = actionBean.getClass().getMethod(requset.getMethodName(), requset.getParameTypes())是什么意思
时间: 2023-03-08 12:17:45 浏览: 147
method = actionBean.getClass().getMethod(requset.getMethodName(), requset.getParameTypes())是指调用某个类的方法,其中requset.getMethodName()是方法名,requset.getParameTypes()是方法参数类型数组。
阅读全文