Tagged Questions
0
votes
2answers
51 views
Object not fetch well in java
I have a problem with fetching objects in Java. There is object A which is Entity bean class and it contains object B (other Entity bean class) as a field. Object A was created without B and later ...
0
votes
1answer
49 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
102 views
JPA EAGER fetch works only if server is restarted
Good evening everybody, this is my first post on Stack Overflow.
I have been quite recently introduced to Java 6 EE and, in particular, to JPA as part of the JSF 2.1 framework and I am now facing a ...
0
votes
2answers
147 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 ...
-1
votes
1answer
60 views
Fetch join in JDO
In JPA fetch join, you can get the entity and its associated entities in one native SQL query. Is there a way to do similar in JDO? I'm using DataNucleus implementation.
0
votes
2answers
303 views
JPA fetch on 3 levels
I need to do something like that :
The structure is :
X contains a list of Y.
Y contains or not a list of Z.
Xroot.fetch("Y", JoinType.INNER);
Xroot.fetch("Y.Z", JoinType.LEFT);
But in JPA the ...
0
votes
1answer
192 views
Loading child entities in parent/child relationship with JPA
My domain has a Category entity which has a biderectional relationship on itself. Each category can have a parent and children.
@Entity
public class Category implements DomainObject {
private ...
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
509 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 ...
4
votes
1answer
935 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
1answer
520 views
JPA Query with fetching/join retrieving only certain associations
once again my brain is less powerfull than the logic....
My Example has a one-to-many association where a Person has many Items.
An Item has a Date property. I want to do a query where the object ...
3
votes
1answer
2k views
jpa lazy fetch entities over multiple levels with criteria api
I am using JPA2 with it's Criteria API to select my entities from the database. The implementation is OpenJPA on WebSphere Application Server. All my entities are modeled with Fetchtype=Lazy.
I ...
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
2answers
410 views
What's the lazy strategy and how does it work?
I have a problem. I'm learning JPA. I'm using embedded OpenEJB container in unit tests, but only working is @OneToMany(fetch=EAGER). Otherwise is the collection allways null. I haven't found, how the ...
0
votes
1answer
672 views
OpenJPA - lazy fetching does not work
I have a specific problem with an unit test using embedded OpenEJB container. I have a bi-directional relation between two classes. In one direction the relation works properly, but in the opposite ...
0
votes
1answer
347 views
Merging an object with FetchType.EAGER relation leads to “FailedObject”
I have an entity VM with a relationship to another entity BP. The relationship is eagerly fetched. First I load a VM. After loading the VM is detached, serialized and changed at the client side. Now I ...
5
votes
1answer
521 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
886 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 ...
1
vote
1answer
2k views
Lazy loading doesn't work - jpa
Hy all,
I have three tables Child, Pet and Toy. Pet has a reference key the child id, and a toy has a reference key to a dog id.
I want to load all data about a Child and his pets, but i don't ...
2
votes
1answer
1k views
How to do join fetching instead of select fectching with EclipseLink?
I've got a OneToOne relation between two entities. This relation is eager by default, but when logging requests, I only see multiple selects, no join appears. Same thing when forcing eager.
Do you ...
2
votes
0answers
216 views
Wrong number of children items returned in join fetch on JPA
I have a JPA OneToMany association
@OneToMany(mappedBy = "playlist", fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@IndexColumn(name = "intSequence")
private List<Track> tracks;
in ...
8
votes
3answers
8k views
JPA 2 Criteria Fetch Path Navigation
With JPA 2 Criteria Join method I can do the following:
//Join Example (default inner join)
int age = 25;
CriteriaBuilder cb = entityManager.getCriteriaBuilder();
...
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. ...