Hello,
I noticed that we can use the @Getter / @Setter annotations on a Class level, leading to the generation of getters and setters for all the class fields.
But sometimes, you would like not to generate the getter or setter for one field, because you might have to perform a routine other than a simple "this.field = field". You'll say in that case I can use the annotation on a Field level, but this can be quite tedious if my class have about 10 fields :) .
Don't you think we should have optional parameters like includes or/and excludes to specify which fields should be handled by the annotations?
Let me know your thoughts :).
Thanks.