Multipart File Upload:Size exceed exception in spring boot return JSON error message

前端 未结 2 663
悲&欢浪女
悲&欢浪女 2021-02-09 03:00

As I have set maximum file upload limit,I am getting

org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field file exceed         


        
2条回答
  •  长发绾君心
    2021-02-09 03:26

    As par I know you can handle the multipart file exception by using this.

    @ControllerAdvice
    public class MyErrorController extends ResponseEntityExceptionHandler {
    
    Logger logger = org.slf4j.LoggerFactory.getLogger(getClass());
    
    @ExceptionHandler(MultipartException.class)
    @ResponseBody
    String handleFileException(HttpServletRequest request, Throwable ex) {
        //return your json insted this string.
        return "File upload error";
      }
    }
    

提交回复
热议问题