0
votes
3answers
37 views

JPA Hibernate - @ManyToOne not getting correctly

I'm using JPA (Hibernate) and I have a problem when I try to fetch an object from my database. I'm using Glassfish 3.1.2, Hibernate and Oracle database 10.2.0.4. Here is the concept of my ...
2
votes
3answers
33 views

Fetch not repeated rows in hibernate

I would like to fetch a list from a query in Hibernate but without repeated elements. Currently i have something like: SELECT t FROM Table t join fetch t.list tl WHERE tl.userid=:userid AND ...
0
votes
1answer
48 views

Hibernate bug? Mishandling result columns, querying the DB for nonexistent ID

I observe a weird behavior of Hibernate. I have an entity graph described in JPA/JPQL: Fill a collection/map based on related object's collection/map? (prototype-like) Then I query this model: ...
0
votes
1answer
137 views

Multiple join level with hibernate criteria

I am new to Hibernate and I would Like to know how this sort of things with Criteria : I have three classes A, B and C. the Class A has the association @OneToMany with class B. And Class B have the ...
0
votes
0answers
116 views

Hibernate maxResults with OneToMany Fetch counts children as result rows

I have a class Video that has a OneToMany annotation to another class Comment. @OneToMany(fetch = FetchType.LAZY, mappedBy = "videoId", cascade = CascadeType.ALL, orphanRemoval = true) @Sort(type = ...
0
votes
2answers
145 views

Left join fetching duplication

I have some troubles with JPA(Hibernate) and LazyFetching I have some entities: Quest, Reward, Contract Relationship(all are Lazy): Quest One2Many Reward; Quest Many2Many Contract; Contract ...
0
votes
0answers
211 views

hibernate not doing a eager fetch (using fetch=“join” and lazy=“false”)

I want to do a eager fetch in my webapplication.I have following in my mapping file <many-to-one name="user" class="com.xyz.beans.User" fetch="join" lazy="false"> <column ...
0
votes
1answer
124 views

Hibernate decide which fetching strategy to use at runtime

I have a question regarding hibernate's eager and lazy loading. I have following setup: public Person { int prsnId; Set<Preferences> preferences; Set<ContactDetails> contactDetails; ...
1
vote
1answer
187 views

Hibernate: Eager fetching / help me survive my hibernate nightmare

I am trying to return a List of Objects with the following HQL-Statement: return getHibernateTemplate().findByNamedParam("Select distinct response.user from Survey survey inner join fetch ...
3
votes
1answer
3k views

query specified join fetching, but the owner of the fetched association was not present in the select list

I'm selecting two id columns but get error specified: org.hibernate.QueryException: query specified join fetching, but the owner of the fetched association was not present in the select list ...
4
votes
2answers
217 views

Hibernate LAZY fetch not initializing an instance

I encountered a problem with lazy association two days ago and still haven't found an explanation of such a behavior. Here is my simplified class hierarchy: @Entity @Table(name="A") public class A { ...
1
vote
1answer
167 views

Hibernate: Partial fetching of collection?

I would like to fetch only parts of the a collection using a hibernate criteria query. As an example lets say i have a Class object containing multiple Student objects. Now i would like to get a list ...
0
votes
0answers
185 views

How to write a Hql About fetch

The object graph is simple Order -> OrderLineItem One to many OrderLineItem -> MenuItem Many to one the Class is like below: public class Order { private long id; private ...
0
votes
2answers
219 views

Hibernate produces extra sql

I have two entities: Parent and Child. And there is @OneToOne relationship between them. I have the following query: from Parent p left join fetch p.child. If there is a row in Parent with non ...
0
votes
1answer
252 views

Hibernate strategies fetch multiple tables offline?

Sounds crazy but here is the story. Background: Imagine that our DB look like: Company has n Employee which has spouse and children. Employee also has cars which have tires...so on and so forth... ...
0
votes
2answers
525 views

hibernate StatelessSession update with many-to-one not working (transient instance)?

When I retrieve a Entity (row) with an intentionally unfetched many-to-one association and then try to update that Entity I get the famous transient instance error: Error updating Object object ...
6
votes
4answers
3k views

JPA default fetch type

From my understanding @OneToOne and @ManyToOne JPA annotations do an eager fetch. I want these to be lazily loaded in my application, or at least hint at it (which is what hibernate defaults to). I ...
0
votes
1answer
506 views

Hibernate generates multiple SQL queries even when I use Left join fetch

I have an interesting problem with hibernate, the model looks like the following: @NamedQueries({ @NamedQuery(name = "A.test", query = "SELECT DISTINCT a FROM A a LEFT JOIN FETCH a.pk.b WHERE ...
1
vote
1answer
354 views

Hibernate:can't fetch data from related one-to-one tables

There are User,Person and Employee entities. User knows about both Person and Employee. hibernate config for User: ... <many-to-one name="person" class="entry.Person" column="perid" ...
4
votes
1answer
925 views

Duplicates using left join fetch

I'm using a HQL query to obtain certain records. If I use LEFT JOIN FETCH a collection which is in my target entity will contain duplicate records. If I only use left join, it won't. I guess when ...
2
votes
2answers
536 views

Hibernate 'join' fetching weird behaviour

I have a user and a message table. User to Message are one-to-many relationships and Message to User are many-to-one relationships. I've marked one of the many-to-one as fetch join. When I 'get' a ...
5
votes
2answers
5k views

How to left join fetch multiple children in Hibernate?

I'm working with hibernate and I'm having troubles creating an hql query that fetches all the children of my object. For example: The Object User has a list of Cars and a list of Friends. To get a ...
2
votes
1answer
835 views

Increase fetch performance with Hibernate

As you all know, Hibernate introduces overhead to basically all operations on database due to management of internal cache and object state. What we have currently in our application is that we read ...
2
votes
2answers
2k views

Hibernate mapping setting lazy = 'false'

In hibernate mapping, I have set the property lazy="false", and this fetches all the child records of the parent. This is being used throughout the application. This creates a performance issue at ...
1
vote
1answer
179 views

Hibernate Syntax for using both fetch/select

I am having some trouble mixing and matching fetches and selects using hibernate. Basically, I am listing a bunch of users in a user table which also contains a "createdBy" column which references the ...
3
votes
0answers
2k views

JPA Hibernate left join fetch generating mutiple queries

I have a jpql query to eagerly fetch multi level associations as follows select distinct s from Singer s left join fetch s.singerIdentifiers si //singerIdentifiers is collection in Singer object ...
0
votes
1answer
284 views

Multiple JQPL fetch joins fail with Hibernate

Using Hibernate 3.6.7 and JPA 2, I cannot have two fetch joins in one query. Entity has a self referencing field called parent. localizedTexts is an @ElementCollection, of Java type of Map. ...
3
votes
2answers
6k views

Hibernate fetch join -> cannot fetch multiple bags

Problem is i have two bags in my entity which i would like to display in my jsf frontend (Spring in the back so no lazy loading). So i have to eagerly fetch them to display the information in a list ...
5
votes
1answer
520 views

Insert to JPA collection without loading it

I'm currently using code like this to add a new entry to a set in my entity. player = em.find(Player.class, playerId); player.getAvatarAttributeOwnership().add(new AvatarAttributeOwnership(...)); ...
1
vote
1answer
459 views

hibernate @Any mapping, can't fetch the “any” item

Using hibernate @Any mapping to map multiple entities in the same, I haven't be able to build a request to fetch all the objects of a specific class. Hibernate doesn't seem to be capable to handle ...
1
vote
1answer
304 views

FetchMode only works with primary key Column

I have changes the code but the issue is still there CandidateResumeInfo candidateResumeInfo = new CandidateResumeInfo(); ArrayList<CandidateResumeInfo> allCandidateResumeInfo= new ...
0
votes
2answers
1k views

Using lazy property fetching in Grails / Gorm

is there any way to use lazy property fetching in Grails / Gorm ? somtehing like: @Basic(fetch = FetchType.LAZY) annotation ( it also works with left join fetch?) (for example lazy loading of an ...
1
vote
1answer
881 views

Hibernate EntityManager + Query Cache - “join fetch” not working

I am trying to cache a query like this: TypedQuery<Foo> q = em.createQuery( "SELECT foo FROM Foo foo " + "INNER JOIN FETCH Foo.bar " ); q.setHint("org.hibernate.cacheable", true); The ...
3
votes
1answer
237 views

How to determine the number for FetchBatchSize in OpenJPA?

OpenJPA provided some parameter in the FetchPlan. (http://openjpa.apache.org/builds/1.2.0/apidocs/org/apache/openjpa/persistence/FetchPlan.html) And I was stuck in one of them, the FetchBatchSize. ...
2
votes
2answers
10k views

How to Fetch @OneToMany and @ManyToMany Entities

my issue is very related to the following: Why am I getting a Hibernate LazyInitializationException in this Spring MVC web application when the data displays correctly? I have the following ...
3
votes
0answers
912 views

How to get Hibernate FetchProfile to load deep child objects in the hierarchy

I have the same question as someone posted in the Hibernate Community: FetchProfiles. For performance reasons I have a relationship in the data model as follows: ...C -[FetchType.LAZY]-> D -> ...
1
vote
0answers
577 views

Avoiding multiple joins on hql with abstract entities

I'm having trouble using hql with the following mapping (classes are between brackets): [Note] @OneToMany [Item]; [SubItem1] extends [Item]; [SubItem2] extends [Item]; [SubItem3] ...
0
votes
1answer
1k views

Hibernate: eagerly fetching depth limit

suppose i have a table named Products which is self-joined using a foreign key: parent_product_id -> id. Now in the corresponding hibernate Products model i got a Set which is consisted of all the ...
2
votes
3answers
4k views

hibernate @ManyToMany bidirectional eager fetching

I have a question which I think should be pretty common but I can't find an answer. I have 2 objects: Group and User. My classes look something like this: class Group { @ManyToMany(fetch = ...
0
votes
1answer
214 views

groovy / grails / hibernate - configure set to be fetched eagerly

We are configuring hibernate with grails using the domain classes. Added: static hasMany = [image:Image] static fetchMode = [image:"eager"] However, when I pull the object graph each image is not ...
2
votes
1answer
4k views

JPQL / HQL fetch join syntax for compatibility with EclipseLink & Hibernate

I would like to be able to swap my JPA implementation between EclipseLink & Hibernate with a simple property change. I can do this ok but what is causing me problems is the named query validation. ...
7
votes
2answers
4k views

Hibernate: Overriding mapping's EAGER in HQL?

It's possible to override LAZY in HQL using LEFT JOIN FETCH. FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id Is it also possible to override EAGER? How?
1
vote
2answers
626 views

Size of assosiation in Hibernate criteria

I've faced with a problem when querying with Hibernate Criteria in Grails. Take a look: def visitors = Client.withCriteria{ visits{ use ( TimeCategory ) ...
3
votes
3answers
1k views

Hibernate - Avoiding unnecessary join when using foreign key in where clause

Hi I try to optimize the database queries in Hibernate, but I found a blocker: <class name="SupportedLanguageVO" table="AR_SUPPORTED_LANG" > <cache usage="read-only"/> <id ...
2
votes
2answers
2k views

Hibernate Criteria: Eagerly load ManyToMany collection

My problem seems pretty straightforward to me, but I just can't seem to find an answer that works. I have a Hibernate Entity which has a ManyToMany association with another Entity, which is fetched ...
1
vote
3answers
4k views

hibernate ignores fetch=“join” on a collection when navigating the object tree with iterator

i have a forum with 1..n members each having 1..n articles, so this is my mapping: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping ...
1
vote
2answers
13k views

hibernate many-to-one hql query, when inner join fetch property not associated

I have a many-to-one association set up like this, in the hbm.xml: <many-to-one name="gigVenue" class="blah.blah.xxx" fetch="select" lazy="no-proxy" not-null="true" > <column ...
13
votes
2answers
17k views

Hibernate fetching strategy - when to use “join” and when to use “select”?

Most Hibernate associations support "fetch" parameter: fetch="join|select" with "select" being default value. How to decide which one to use for which association? I tried changing all from ...