One of my POJOs has a Boolean object field to permit NULLS in the database (a requirement). Is it possible to use the @Data Lombok annotation at class level yet ove
what is the name of boolean field? according to the lombok doc:
A default getter simply returns the field, and is named getFoo if the field is called foo (or isFoo if the field's type is boolean)
lombok will generate getter with name isXXX for your boolean field