-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
属性名生成的getter、setter错误 #1857
Comments
Please speak English, thank you. |
Looks like a duplicate of #1661. |
@NekoCaffeine 不好意思,英语不好。 |
@Maaartinus 谢谢~ |
@zcap Note that the majority of people here understands no Chinese and all we can do with your posts is to run them through translate.google.com. Ideally, you'd do it yourself and post the translated text or both, so that not everybody has to do it. |
Duplicate of #2693 |
针对属性名的形式为第一个字母为小写,第二个字母为大写的情况,Lombok所生成的getter、setter错误。
例如:
String aBc;
这个属性正确的getter、setter方法为:
public void setaBc(String aBc){……
public String getaBc(){……
但是Lombok所生成getter、setter方法为:
public void setABc(String aBc){……
public String getABc(String aBc){……
这样的结果会导致使用像Spring时会导致注入失败。。。望修复。
The text was updated successfully, but these errors were encountered: