I have an Entity which has an association to another Entity annotated with @Where, like so
public class EntityA { @OneToMany @Where(...) private
You can map another property with same data like this:
public class EntityA { @OneToMany @JoinColumn(name='theColumnName', insertable=false, updateable=false) private List entityBListReadOnly; }
Important to set as updateable false and insertable falso to avoid consistency problems in your data!