【前后端联调】MethodArgumentNotValidException
01 问题描述
- 前后端联调,前端传了一个参数是null,但是这个参数设置了校验不能为null,所以报了这个错误
handleMethodArgumentNotValidException,132] - Validation failed for argument [0] in public com.ruoyi.common.core.domain.AjaxResult com.ruoyi.ms111.demos.web.CompressPictureController.putSize(com.ruoyi.ms111.entity.ImageSize) with 2 errors: [Field error in object 'imageSize' on field 'imagePath': rejected value [null];
codes [NotNull.imageSize.imagePath,NotNull.imagePath,NotNull.java.lang.String,NotNull];
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [imageSize.imagePath,imagePath]; arguments []; default message [imagePath]]; default message [图片不能为空]] [Field error in object 'imageSize' on field 'format': rejected value [null];
codes [NotNull.imageSize.format,NotNull.format,NotNull.java.lang.Integer,NotNull];
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [imageSize.format,format]; arguments []; default message [format]]; default message [图片格式不能为空]]
02 问题分析
- 前端传参的问题,前后端两边商量一下参数,统一一下数据能不能为null就好
03 问题解决
- 后端要改的话,我使用的是lombok的@NotNull,删除就好
- 但是对了一下需求,我打赢前端了,让他别传null就好,我这边不用改