result.setErrorMsgMap(true) true报错

来源:3-13 优化校验规则

qq_慕神6028394

2019-10-20 13:50

if (constraintViolationSet.size()>0){
    //有错误
    result.setErrorMsgMap(true);
    constraintViolationSet.forEach(constraintViolation->{
        String errMsg =constraintViolation.getMessage();
        String propertyName=constraintViolation.getPropertyPath().toString();
        result.getErrorMsgMap().put(propertyName,errMsg);
    });
}
其中result.setErrorMsgMap(true)  true报错


写回答 关注

1回答

  • qq_慕神6028394
    2019-10-20 14:01:53

    我搞错了,不好意思?

SpringBoot构建电商基础秒杀项目

应用SpringBoot快速搭建拥有用户、商品、交易及秒杀活动的电商秒杀应用。

49021 学习 · 954 问题

查看课程

相似问题