I have lets say Entity A with a @OneToMany relationship with Entity B. Therefore I have a List entityBlist; that I want to display on a JSF datatable for each Entity A;
This means that I will have to use a "getter" in the EL expression #{backingbean.entityA.entityBlist}
This will obviously cause an exception. Is the only way to resolve this is to replace the getter with an HQL JOIN Fetch statement?