首页>代码>基于jsp+servlet的idea版学生管理系统,前端框架layui>/studentManage/源码/studentManage/src/main/java/controller/BaseServlet.java
package controller;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.lang.reflect.Method;

@WebServlet(name = "BaseServlet")
public class BaseServlet extends HttpServlet {

    @Override
    protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        req.setCharacterEncoding("UTF-8");
        resp.setCharacterEncoding("UTF-8");
        String method = req.getParameter("method");
        if (method != null) {
            try {
                Method targetMethod = this.getClass().getMethod(method, HttpServletRequest.class, HttpServletResponse.class);
                targetMethod.invoke(this, req, resp);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}
最近下载更多
zhangjilu  LV18 1月1日
gfznnbsafz  LV1 2023年12月15日
7nfxfn6  LV1 2023年12月9日
jiemomo  LV12 2023年11月2日
刘洋66666  LV1 2023年10月3日
麻辣香锅加锐澳  LV6 2023年7月29日
hongdongdong  LV12 2023年6月27日
磊少不在  LV2 2023年6月18日
qweqweqwesfasfassada  LV4 2023年6月14日
最近浏览更多
食困症状态度 4月21日
暂无贡献等级
www12386456 4月18日
暂无贡献等级
1303891  LV1 4月14日
刘刘涛  LV1 3月25日
wuqijun 3月6日
暂无贡献等级
翟子浩 1月22日
暂无贡献等级
15504791430 1月4日
暂无贡献等级
东淇 劳 1月2日
暂无贡献等级
zhangjilu  LV18 1月1日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友