Hi I have two classes like this:
public class Indicator implements Serializable {
...
@OneToMany(mappedBy = \"indicator\",fetch=FetchType.LAZY)
priv
Try swich fetchType from LAZY to EAGER
...
@OneToMany(fetch=FetchType.EAGER)
private Set nodeValues;
...
But in this case your app will fetch data from DB anyway. If this query very hard - this may impact on performance. More here: https://docs.oracle.com/javaee/6/api/javax/persistence/FetchType.html
==> 73