我有一个与龙目岛的@Data@AllArgsConstructor(access = AccessLevel.PUBLIC)的课程:

@Data
@AllArgsConstructor(access = AccessLevel.PUBLIC)
public class ResponseVO implements Serializable {
    private static final long serialVersionUID = 3461582576096529916L;
    @JacksonXmlProperty(localName = "amount", isAttribute = true)
    String amount;
 }


当我使用构造函数

new ResponseVO("22222");


将鼠标悬停在构造函数方法上时,我在工具提示中收到警告:

ResponseVO.ResponseVO(String amount)
@SuppressWarnings(value={"all"})


为什么添加此警告?如果没有@Data,它就会消失



类反编译,无任何警告:

public class ResponseVO implements Serializable {
    private static final long serialVersionUID = 3461582576096529916L;
    @JacksonXmlProperty(localName = "amount", isAttribute = true)
    String amount;

    public String getAmount() {
        return this.amount;
    }

    public void setAmount(String amount) {
        this.amount = amount;
    }

    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof ResponseVO)) {
            return false;
        } else {
            ResponseVO other = (ResponseVO) o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                String this$amount = this.getAmount();
                String other$amount = other.getAmount();
                if (this$amount == null) {
                    if (other$amount != null) {
                        return false;
                    }
                } else if (!this$amount.equals(other$amount)) {
                    return false;
                }

                return true;
            }
        }
    }

    protected boolean canEqual(Object other) {
        return other instanceof ResponseVO;
    }

    public int hashCode() {
        boolean PRIME = true;
        byte result = 1;
        String $amount = this.getAmount();
        int result1 = result * 59 + ($amount == null ? 43 : $amount.hashCode());
        return result1;
    }

    public String toString() {
        return "ResponseVO(amount=" + this.getAmount() + ")";
    }

    public ResponseVO(String amount) {
        this.amount = amount;
    }
}

最佳答案

这不是警告,而是显示在所有类,方法等上的常规Eclipse工具提示。这些工具提示显示了相应元素的JavaDoc(在这种情况下为空),并且还列出了元素上的所有注释。
这就是为什么您看到@SuppressWarnings的原因:它是由Lombok生成的,以避免编译器针对Lombok生成的代码发出警告。

问题仍然是为什么Lombok会生成那些抑制注释。
通常,龙目岛的代码不会产生任何警告。但是,新的Java语言或编译器版本可能会导致新类型的警告或新的过时。因此,运行针对较新的Java版本的非自适应Lombok版本可能会产生警告。由于用户将无法修复这些警告,因此这些警告被取消。
此外,添加@SuppressWarnings("all")还可以抑制非标准警告,例如警告。从代码集或在集成到IDE(例如IntelliJ IDEA)的代码分析中进行。

关于java - Eclipse-添加 Lombok 的数据和构造函数时显示@SuppressWarnings(value = {“all”}),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55155461/

10-13 04:41