@Table(name = "obj")
@Entity
@Data
@EqualsAndHashCode(callSuper = false)
@Audited(name = "Obj")
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class Obj {
//PROPERTIES
}
BeanUtils.copyProperties
is not working to copy the associations for this entity. It is unable to find getters and setters even when they get automatically defined using @Data
of Lombok.