packagecom.xkd.goods.controller;importcom.xkd.goods.entity.User;importcom.xkd.goods.mapper.UserMapper;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.Controller;importorg.springframework.web.bind.annotation.GetMapping;importorg.springframework.web.bind.annotation.RequestMapping;@Controller@RequestMapping("/user")publicclassUserController{@AutowiredprivateUserMapper userMapper;@GetMapping("/findById")publicvoidfindById(){System.out.println("请求进来了...");User user = userMapper.selectById(1);System.out.println(user);}}