Hibernate version:
3.2
I have searched around, but can't seem to find an answer.
I have certain fields in my mapping set to lazily load. This is what i want most of the time. But, i was wondering if there was a way to tell hibernate on a case by case basis to load everything all at once (including all my lazy fields and all the fields inside the lazy fields). Basically, there are times, i want to load every piece of data all the way to the bottom. Does anyone know if this is possible?
If not, does anyone know if I used the clone method in Apache Commons SerializationUtils (
http://commons.apache.org/lang/api/org/apache/commons/lang/SerializationUtils.html#clone(java.io.Serializable) whether or not this would accomplish the same thing? This should be an easy test for me, but i wanted to know if there was a more efficient and direct way to force the loading of all fields.
Thanks,
Paul