分配权限需要退出重新登录,给明确提示

pull/6339/head
JEECG 2024-06-18 11:34:43 +08:00
parent 2747868ea7
commit 3a07d5a983
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ public class JeecgBootExceptionHandler {
@ExceptionHandler({UnauthorizedException.class, AuthorizationException.class}) @ExceptionHandler({UnauthorizedException.class, AuthorizationException.class})
public Result<?> handleAuthorizationException(AuthorizationException e){ public Result<?> handleAuthorizationException(AuthorizationException e){
log.error(e.getMessage(), e); log.error(e.getMessage(), e);
return Result.noauth("没有权限,请联系管理员授权"); return Result.noauth("没有权限,请管理员授权后,退出重新登录!");
} }
@ExceptionHandler(Exception.class) @ExceptionHandler(Exception.class)

View File

@ -51,7 +51,7 @@ public class CommonController {
*/ */
@GetMapping("/403") @GetMapping("/403")
public Result<?> noauth() { public Result<?> noauth() {
return Result.error("没有权限,请联系管理员授权"); return Result.error("没有权限,请管理员授权后,退出重新登录!");
} }
/** /**