• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hibernate lazy property fetching

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello all -

I have an object/relational mapping defined using hibernate 3.0. The table contains a binary column that I would like to set as a "lazy property".

When listing records from the table, binary data is downloaded for each record returned in the query resulting in a huge performance hit. Setting the mapping element with the attribute lazy="true" does not accomplish the intented "lazy" load.

<code>
<class name="com.dana.sealing.itchecklist.TaskFile" table="attachments">
<id name="id" type="integer" column="id">
<generator class="identity"/>
</id>

<many-to-one name="parent" column="history_id" not-null="true"/>
<property name="filename" type="string" not-null="true" column="filename" />
<property name="contentType" type="string" not-null="false" column="content_type" />
<property name="content" type="binary" not-null="false" column="content" lazy="true"/>

</class>

</code>

The documentation states this is possible, however, I have not been able to successfully implement this. Has anyone been able to get this to work and if so, can you provide the details of how to accomplish this?

Best Regards,
R. Alcazar
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
try this .may be it works out


see the following url:
http://forums.hibernate.org/viewtopic.php?t=941926&highlight=&sid=e85e783edb8f2fafc49b2b873dca3967
[ December 06, 2005: Message edited by: Mohd. Yakub ]
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you done the necessary bytecode instrumentation of your persistant class? Lazy property fetching won't work with a class that is compiled normally.
[ December 05, 2005: Message edited by: Paul Sturrock ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic