You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should not be ignored,
there are cases when one has to work with older frameworks that expect getXxx naming conventions (Like velocity). In those cases it would be handy
to generate extra accessors.
Add the possibility to use @Getter on java 17 record on the different components.
The reason why is we don't know when you use a class if it is a record or a class and the way to retrieve attributes or components are different.
With lombok
@Getter
public record MyObject(int id) {
}
Generated
public record MyObject(int id) {
public int getId() {
return id;
}
}
The text was updated successfully, but these errors were encountered: