mars-men / GsonFormatPlus

GsonFormatPlus
Apache License 2.0
143 stars 34 forks source link

不用lombok, 转换库是Jackson时候, bool类型的属性值, get方法默认是is开头,不是get开头 #8

Closed ClutchBear closed 3 years ago

ClutchBear commented 3 years ago
    public boolean isManualCheck() {
        return manualCheck;
    }
   public void setManualCheck(boolean manualCheck) {
        this.manualCheck = manualCheck;
    }

类似这样, 会导致BeanUtils.copyProperties(source, target)的时候无法获取到此bool属性.

mars-men commented 3 years ago

下个版本支持一下

mars-men commented 3 years ago

1.5.8版本预计两天内审核通过,已修复这个bug

junziqiao commented 3 years ago

已经修复了