这个是@RequestBody的会抛出的异常
@ExceptionHandler(MethodArgumentNotValidException.class)
public Resp argsException(MethodArgumentNotValidException me){
return Resp.error(-999,"参数有误");
}
这个是无@RequestBody的异常,注意
@ExceptionHandler(BindException.class)
public Resp argsException(BindException me){
return Resp.error(-1000,"参数有误");
}