Hi,
If I'm correct collections that are mapped with
Code:
lazy="true"
are not loaded until needed. When needed they are loaded completely.
I want to specify a hibernate mapping for my java.util.Map property so that I can fetch only the needed objects with
Code:
myMap.get("myKey")
without fetching the complete map from the database. Is this possible with the hibernate provided lazy map implementation ? I realize this is not so obvious because the other methods such as
Code:
myMap.size()
should keep on working properly.
Thanks for your attention.
Regards, Tom.
http://jbpm.org