0

while using fetch = FetchType.EAGER for more than one field I get this exception To fetch from multiple table in hibernate what else should I use, My Code is down below enter image description here

1 Answers1

0

You can avoid the exception if you switch from List<> to Set<>.

@OneToMany(...)
Set<...> ....
domenic_K
  • 134
  • 12