@PostMapping("/getGateExamListVo") @ResponseBody public JsonDto getGateExamListVo(HttpServletRequest req) { String Page = req.getParameter("Page"); int page = Integer.valueOf(Page); List<EntryExamVo> examListVo = entryService.getExamVo(page); int row = entryService.getExamCount(); JsonDto jsonDto = new JsonDto(200, "success", null); jsonDto.getMap().put("examListVo", examListVo); jsonDto.getMap().put("row", row); return jsonDto; }
时间: 2024-01-26 09:04:23 浏览: 120
Springmvc 4.x利用@ResponseBody返回Json数据的方法
5星 · 资源好评率100%
这段代码是一个使用Spring框架的Java程序,它定义了一个POST请求的API接口,路径为"/getGateExamListVo"。当请求到达该接口时,它会从HTTP请求中获取参数"Page",并将其转换为整数类型的变量page。然后,它调用entryService.getExamVo(page)方法获取EntryExamVo类型的列表examListVo,并调用entryService.getExamCount()方法获取总行数row。最后,它将examListVo和row存储在JsonDto类型的对象中,并返回该对象作为HTTP响应。
阅读全文