open API
[jackson/lombok] lombok get/set wrong generation
張's blog
2023. 11. 10. 14:47
@JsonProperty("yResolution")
OR
@JsonGetter("yResolution")
OR
@Getter(onMethod_ = {@JsonGetter("yResolution")})
@Setter(onMethod_ = {@JsonSetter("yResolution")})
private String yResolution;
https://stackoverflow.com/questions/39993223/lombok-getter-setter-generation-wrong-when-first-char-lowercase-and-next-upperca
Lombok getter/setter generation wrong when first char lowerCase and next upperCase
I have a problem with generating getter/setter for attributes like xPos, yPos, nCounter and so on. Plattform is Eclipse Luna, Java 1.7, Struts2... While Eclipse generates private xPos getXPos()
stackoverflow.com