1. Lazy loading of @Lob property forum.hibernate.orgHi, I use JPA(Hibernate implmentation). I use Hibernate Annotations 3.4.0,Hibernate Commons Annotations 3.1.0.GA,Hibernate EntityManager 3.4.0.GA,Hibernate3(hibernate-core) (3.3.0 SP1) I have a class News.java that has @Lob property ,and i want to load lazy this property.My property is something like this : Code: @Lob @Basic(fetch = FetchType.LAZY) public String getTitle() { return title; ... |
2. Lazy loading lob - merge does nothing. forum.hibernate.org |
3. Lazy-loading a Lob forum.hibernate.orgHello, I crawled hours now through the net searching a solution, so I finally ask you my question: I've got a class files which contains a clob. Well it's a clob and clobs are used for large data, so I don't want to load it right with the files, if I'll only get an overview of them. Code: @Entity @Table(name = ... |
4. lob + lazy-loading forum.hibernate.org |