fix(请求接口文件大小限制): 提示语修改

This commit is contained in:
yjz
2024-03-25 13:52:02 +08:00
parent 9cd53a57b1
commit dbbbfc6670
@@ -86,7 +86,7 @@ public class JeroBootExceptionHandler {
@ExceptionHandler(MaxUploadSizeExceededException.class)
public Result<T> handleMaxUploadSizeExceededException(MaxUploadSizeExceededException e) {
log.error(e.getMessage(), e);
return Result.error("文件大小超出10MB限制, 请压缩或降低文件质量! ");
return Result.error("文件大小超出500MB限制, 请压缩或降低文件质量! ");
}
@ExceptionHandler(DataIntegrityViolationException.class)