I use Project Lombok to automatically generate getter and setter methods for all fields of a Java class.
When a field is annotated with e.g. @XmlTransient
, the annotation is not propagated to the generated getter/setter methods, thus in the resulting code it does not show any effect. Is there a way to use automatic getter/setter generation in conjunction with further annotations?