直接上代码 1.Controller代码 @GetMapping(value = "/getage/{id}") public void getAge(@PathVariable("id") Integer id) throws Exception {girlService.getAge(id); } 2.Service……