以is作为名称开头的属性,它的Getter方法名应该是什么样的?
--> private String isAbc;
when use eclipse, we can generate getter for the attribute isAbc:
public String getIsAbc() {
return isAbc;
}
--> private @Getter String isAbc;
when use lombok, I get the getter
public String isAbc() {
return isAbc;
}
The two getters have different names. I think eclipse is right. Is this a issue of lombok ?