1、FruitController
- FruitController已经和Web没有关系了,和Web容器解耦,可以脱离Web容器做单元测试
javapackage com.csdn.fruit.controller; import com.csdn.fruit.dto.PageInfo; import com.csdn.fruit.dto.PageQueryParam; import com.csdn.fruit.dto.Result; import com.csdn.fruit.pojo.Fruit; import com.csdn.fruit.service.FruitService; import com.csdn.mymvc.annotation.*; @Controller @RequestMapping("/fruit") public class FruitController { @Autowire private FruitService fruitService; @GetMapping("/index") public Result index(Integer pageNo,String keyword) { if (pageNo == null) { pageNo = 1; } if (keyword == null) { keyword = ""; } PageQueryParam pageQueryParam = new PageQueryParam(pageNo, 5, keyword); PageInfo<Fruit> pageInfo = fruitService.getFruitPageInfo(pageQueryParam); return Result.OK(pageInfo); } @PostMapping("/add") public Result add(@RequestBody Fruit fruit) { fruitService.addFruit(fruit); return Result.OK(); } @GetMapping("/del") public Result del(Integer fid){ fruitService.delFruit(fid); return Result.OK(); } @GetMapping("/edit") public Result edit(Integer fid){ Fruit fruit = fruitService.getFruitById(fid); return Result.OK(fruit); } @GetMapping("/getFname") public Result getFname(String fname){ //fname是请求参数 Fruit fruit = fruitService.getFruitByFname(fname); return fruit == null ? Result.OK() : Result.Fail(); } @PostMapping("/update") public Result update(@RequestBody Fruit fruit){ //fruit是请求体参数 fruitService.updateFruit(fruit); return Result.OK(); } }
2、DispatcherServlet
javapackage com.csdn.mymvc.core; import com.csdn.fruit.dto.Result; import com.csdn.fruit.util.ResponseUtil; import jakarta.servlet.RequestDispatcher; import jakarta.servlet.ServletContext; import jakarta.servlet.ServletException; import jakarta.servlet.annotation.WebServlet; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import org.junit.Test; import java.io.IOException; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.Arrays; import java.util.Map; @WebServlet("/*") public class DispatcherServlet extends HttpServlet { private final String BEAN_FACTORY = "beanFactory"; private final String CONTROLLER_BEAN_MAP = "controllerBeanMap"; @Test public void uri() { String uri = "/fruit/index"; String[] arr = uri.split("/"); System.out.println(Arrays.toString(arr));//[, fruit, index] } @Override protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String[] staticResourceSuffixes = {".html", ".jsp", ".jpg", ".png", ".gif", ".css", ".js", ".ico"}; String uri = req.getRequestURI(); if (Arrays.stream(staticResourceSuffixes).anyMatch(uri::endsWith)) { RequestDispatcher defaultDispatcher = req.getServletContext().getNamedDispatcher("default"); defaultDispatcher.forward(req, resp); } else { String[] arr = uri.split("/"); if (arr == null || arr.length != 3) { throw new RuntimeException(uri + "非法!"); } //[, fruit, index] String requestMapping = "/" + arr[1]; String methodMapping = "/" + arr[2]; ServletContext application = getServletContext(); ControllerDefinition controllerDefinition = ((Map<String, ControllerDefinition>) application.getAttribute(CONTROLLER_BEAN_MAP)) .get(requestMapping); if (controllerDefinition == null) { throw new RuntimeException(requestMapping + "对应的controller组件不存在!"); } //获取请求方式,例如:get或者post String requestMethodStr = req.getMethod().toLowerCase(); //get_/index Method method = controllerDefinition.getMethodMappingMap().get(requestMethodStr + "_" + methodMapping); Object controllerBean = controllerDefinition.getControllerBean(); try { //第 1 步:参数处理 //第 2 步:方法调用 //调用controllerBean对象中的method方法 method.setAccessible(true); Object returnObj = method.invoke(controllerBean, req, resp); if (returnObj != null && returnObj instanceof Result) { Result result= (Result) returnObj; ResponseUtil.print(resp,result); } } catch (IllegalAccessException e) { e.printStackTrace(); throw new RuntimeException(e); } catch (InvocationTargetException e) { e.printStackTrace(); throw new RuntimeException(e); } } } }
项目实战:中央控制器实现(2)-优化Controller,将共性动作抽取到中央控制器
丁总学Java2023-11-08 20:53
相关推荐
让学习成为一种生活方式12 分钟前
R包下载太慢安装中止的解决策略-R语言003晨曦_子画17 分钟前
编程语言之战:AI 之后的 Kotlin 与 Java南宫生40 分钟前
贪心算法习题其三【力扣】【算法学习day.20】Heavydrink1 小时前
HTTP动词与状态码ktkiko111 小时前
Java中的远程方法调用——RPC详解计算机-秋大田1 小时前
基于Spring Boot的船舶监造系统的设计与实现,LW+源码+讲解神里大人1 小时前
idea、pycharm等软件的文件名红色怎么变绿色小冉在学习2 小时前
day53 图论章节刷题Part05(并查集理论基础、寻找存在的路径)代码之光_19802 小时前
保障性住房管理:SpringBoot技术优势分析ajsbxi2 小时前
苍穹外卖学习记录