使用SpringBoot自带的DigestUtils进行加密, 然后比对

1
2
3
4
5
6
7
//密码比对
//对前端传过来的明文密码进行md5加密
password = DigestUtils.md5DigestAsHex(password.getBytes());
if (!password.equals(employee.getPassword())) {
//密码错误
throw new PasswordErrorException(MessageConstant.PASSWORD_ERROR);
}