大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
getMethod方法要注意的地方:
类对象.getMethod(mName,HttpServletRequest.class,HttpServletResponse.class);
第一个参数是mName“方法名称”
第二个参数是“方法参数的类对象”//这个就是为什么他是.class的原因,为什么参数是类对象?因为这个是Java规定的
举个例子
这是一个抽取出的通用的servlet(页面请求经过的第一个servlet,所有页面请求必须经过的一个servlet, baseservlet)
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {
//1.获取方法名称
String mName = request.getParameter(“method“);
//2.获取方法对象
Method method = this.getClass().getMethod(mName,HttpServletRequest.class,HttpServletResponse.class);
//3.让方法执行,接受返回值
String path = (String) method.invoke(this, request,response);
//4.判断返回值是否为空,若不为空,统一处理请求转发
if(null != path) {
request.getRequestDispatcher(path).forward(request, response);
}
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException();
}
}
三,这是一个具体执行某类操作的servlet(这里是执行用户注册的servlet,页面请求经过的第二个servlet,userservlet)
public String registUI(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
return “/jsp/register.jsp”;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/193509.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...