目录
查询全部部门信息
// 知识点1:
@RequestMapping(value = "/list", method = RequestMethod.GET)
等价于:
@GetMapping("/list")
//知识点2:
private static Logger logger = LoggerFactory.getLogger(DeptController.class);
等价于
@Slf4j(lombok.extern.slf4j.Slf4j;)
如果请求方法错误,会报错:
标签:知识点,Springboot,list,部门,等价,员工,案例,Slf4j From: https://www.cnblogs.com/czzz/p/17624986.html