↧
Answer by Pawel for Lombok Builder ignores custom setter
@Builder generates its own class classNameBuilder with methods and fields. That's why it's not using your setter from @Setter annotation. Those both annotations does not depend on each other, that's...
View ArticleLombok Builder ignores custom setter
so, I have a class with @Builder annotation and a custom setter which have to do more than setting this.authorities@Setter(AccessLevel.NONE)private Collection<Authority> authorities;public void...
View Article