time « Load « JPA Q&A





1. Improving the performance of Jpa image load time    stackoverflow.com

I have an application which has to handle a list of objects (retrieved from the database using JPA) which contain an image serialized. The issue is that when I get around 50 ...

2. Lazy Loading / Build-time instrumentation does not work    forum.hibernate.org

@Lob @Basic( fetch = FetchType.LAZY) // Hibernate book p. 572, bottom! @Column( name ...

3. Lazy Loading / Build-time instrumentation does not work    forum.hibernate.org

@Lob @Basic( fetch = FetchType.LAZY) // Hibernate book p. 572, bottom! @Column( name ...

4. Configuration file loading time in 3.0 alpha    forum.hibernate.org

5. Load same Entity(same DB identity) in session >1 time    forum.hibernate.org

I am using hibernate 3.0 final. This is a design question so I am not sure any of the requested information is needed. If it is needed I can add it to the post. I am trying to load an entity twice in a same session. Here is what is going on. - open session s - I first load entity ...

6. how to load by many IDS at once w/o calling get each time    forum.hibernate.org

Hi, I just have a quick question and I'm hoping someone can give me a hand... In my code I have a Set of IDs which correspond to the IDs for a specific object that I want to load and I was wondering if I could easily do this in one database call rather than iterating through the set of IDs ...

7. need help using classloader and hybernate at the same time..    forum.hibernate.org

i have an application that uses hybernate for persistence in java, but at the same time i use a classloader for importing pluggins to the application. My problem is that i dunno the name of the class i have in a table, i know the name of the interface or the abstract class that is implement or extended... and when i ...

8. lazy-load needs a session during the whole app-time?    forum.hibernate.org

Hi, You will have to initialize the child in the same session, else you will have the LazyInitializationException. i.e) If you want the child in the screen1, load the child along with the parent. If you feel that in page1 parent object is enough and in page2 you are required to show child object..call ur backend to load the parent with ...