Tagged Questions
3
votes
2answers
823 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 ...
3
votes
4answers
16k views
Need an example of a primary-key @OneToOne mapping in Hibernate
Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in Hibernate ? I've tried numerous combinations, and so far the best thing I've gotten is this :
@Entity
...
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
2answers
116 views
Is it possible to map a superclass and subclass by OneToOne relationship in Hibernate?
Is it possible to map a subclass to its superclass by OneToOne relationship base on their primary key properties in Hibernate? How can I implement this?
1
vote
4answers
670 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 ...
1
vote
1answer
218 views
@OneToOne getting returned as ManyToOneType
I have the following POJO:
public class SampleBean1 {
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
protected String id;
...
1
vote
4answers
6k views
ORM: OneToOne mapping on Non Primary-Key Join column - Book and Inventory mapped by ISBN
I have a Book model and Inventory model mapped by ISBN number, but ISBN is not the primary key in either. Books belong to Bookstores and Inventory is for a group of Bookstores(BookstoreChain). ...
0
votes
1answer
417 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 ...