EmployeeController类的员工退出logout方法

@PostMapping("/logout")
public R<String> logout(HttpServletRequest request) {
//1、清理Session中的用户id
//2、返回结果
request.getSession().removeAttribute("employee");
return R.success("退出成功");

}

==============================================

 

 

 
posted @ 2023-03-20 09:53  大灰狼21  阅读(16)  评论(0编辑  收藏  举报