I was updating the hibernate 3.x to 5.x. In order to handle the lasyloading problems we have used classes with FieldHandled
. But it looks like Hibernate 5 do not have it any more. Any idea what should I be using now ?
Asked
Active
Viewed 2,141 times
2
1 Answers
-1
There is FieldHandled
interface in Hibernate 5. I'm using it successfully:

Ondrej Bozek
- 10,987
- 7
- 54
- 70
-
3Not totally correct, While `FieldHandled` is effectively present in hibernate 5.0 it is not in 5.10 [link](https://docs.jboss.org/hibernate/orm/5.1/javadocs/). – fan May 25 '16 at 07:35