简历业务逻辑完善

This commit is contained in:
2025-11-08 11:52:59 +08:00
parent 61d959e6b8
commit f38d157581
9 changed files with 186 additions and 53 deletions

View File

@@ -28,7 +28,8 @@ public class AuthenticationEntryPointImpl implements AuthenticationEntryPoint, S
throws IOException
{
int code = HttpStatus.UNAUTHORIZED;
String msg = StringUtils.format("请求访问:{},认证失败,无法访问系统资源", request.getRequestURI());
//认证失败,无法访问系统资源
String msg = StringUtils.format("Request access{}authentication failed, unable to access system resources", request.getRequestURI());
ServletUtils.renderString(response, JSON.toJSONString(AjaxResult.error(code, msg)));
}
}