Compare commits

..

3 Commits

Author SHA1 Message Date
阿斌
982d5e4972
Pre Merge pull request !41 from 阿斌/N/A 2026-06-25 14:15:57 +00:00
panlinlin
41fd16e5d3 增加对文件上传大小超限的异常处理 2026-06-25 22:15:40 +08:00
panlinlin
2877bde26a 增加对文件上传大小超限的异常处理 2026-06-25 22:13:53 +08:00

View File

@ -11,6 +11,7 @@ import org.springframework.web.HttpRequestMethodNotSupportedException;
import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice; import org.springframework.web.bind.annotation.RestControllerAdvice;
import org.springframework.web.multipart.MaxUploadSizeExceededException;
import org.springframework.web.servlet.resource.NoResourceFoundException; import org.springframework.web.servlet.resource.NoResourceFoundException;
/** /**
@ -32,13 +33,24 @@ public class GlobalExceptionHandler {
return WVPResult.fail(ErrorCode.ERROR500.getCode(), e.getMessage()); return WVPResult.fail(ErrorCode.ERROR500.getCode(), e.getMessage());
} }
/**
* 默认异常处理
* @param e 异常
* @return 统一返回结果
*/
@ExceptionHandler(MaxUploadSizeExceededException.class)
@ResponseStatus(HttpStatus.FORBIDDEN)
public WVPResult<String> exceptionHandler(MaxUploadSizeExceededException e) {
return WVPResult.fail(ErrorCode.ERROR403.getCode(), "文件过大");
}
/** /**
* 默认异常处理 * 默认异常处理
* @param e 异常 * @param e 异常
* @return 统一返回结果 * @return 统一返回结果
*/ */
@ExceptionHandler(NoResourceFoundException.class) @ExceptionHandler(NoResourceFoundException.class)
@ResponseStatus(HttpStatus.BAD_REQUEST) @ResponseStatus(HttpStatus.NOT_FOUND)
public WVPResult<String> exceptionHandler(NoResourceFoundException e) { public WVPResult<String> exceptionHandler(NoResourceFoundException e) {
return WVPResult.fail(ErrorCode.ERROR404); return WVPResult.fail(ErrorCode.ERROR404);
} }