Tagged Questions
3
votes
2answers
829 views
Why hibernate perform two queries for eager load a @OneToOne bidirectional association?
i have entity A that has-a B entity, and B has-a A with @OneToOne bidirectional association.
Now, when i findall A records, hibernate perform two queries with a left outer join on B, something like ...
2
votes
1answer
208 views
JPA @OneToOne with Shared ID — Can I do this Better?
I’m working with an existing schema that I’d rather not change. The schema has a one-to-one relationship between tables Person and VitalStats, where Person has a primary key and VitalStats uses the ...
2
votes
1answer
798 views
JPA Entity Mapped as OneToOne as well as OneToMany
Consider the following JPA entity. My application instance class must always have a OneToOne reference to 4 special instances of Envelope but it also has a set of 0-infinite user defined envelopes. ...
2
votes
3answers
2k views
How do you remove rows after changing the item in a JPA OneToOne relationship?
How do you get a OneToOne item to automatically remove with JPA/Hibernate? I would expect simply setting the OneToOne item to be null in the class that contains would be smart enough to allow ...
1
vote
4answers
671 views
@OneToOne annotoation problem (i think…)
im new in hibernate and JPA and i have some problems with annotations.
My target is to create this table in db (PERSON_TABLE with personal-details)
ID ADDRESS NAME SURNAME ...
0
votes
1answer
54 views
Delete OneToOne relationship
We have the following mapping:
@Entity
public class A {
private B b;
@OneToOne
public B getB() {
return b;
}
}
When we delete an object of class A it must not delete the ...
0
votes
1answer
59 views
Initialize dependent object in simple unidirectional OneToOne mapping
I have a problem with a simple unidirectional mapping. Here are my entities:
@Entity
public class Account extends UUIDBase {
private Profile profile;
@OneToOne(cascade = CascadeType.ALL, ...
0
votes
2answers
127 views
@OneToOne relations hibernate question
I'm working in a project using Hibernate +JPA. I have this Entity class:
@Entity
public class CafeUser implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
...
0
votes
0answers
396 views
JPA: OneToOne bidirectional relation
Assume there are two entities with OneToOne relation:
@Entity
public class A {
private long code;
private B b;
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public long ...
0
votes
1answer
418 views
JPA 2 - OneToOne cross reference
I have been struggling with this issue for a while now, and can't seem to find a solution anywhere. Maybe I have misunderstood something, but would really appreciate it if someone could clear up ...