springboot中根据id查询用户信息
在后台管理系统重,跟id查询单条记录信息的实现,拿到数据后进行回显
实现效果
接口测试
代码实现
controller实现
/**
* 查询单个员工
*/
@GetMapping("/{id}")
public Result getById(@PathVariable Integer id) {
log.info("查询单个员工操作 {}", id);
Emp emp = empService.getById(id);
return Result.success(emp);
}
mybatis实现
@Select("select * from emp where id = #{id}")
Emp getById(Integer id);
server比较简单,就不贴代码了,可以自己去实现下