Tagged Questions

3
votes
2answers
822 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
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
2answers
557 views

Hibernate @OneToOne mapping with reverse reference and CascadeType.ALL on owner does not persist the child

We have the following entity relation ship. User is the parent entity.DistrictUserDetail is the child. @Entity @Table(name="USERS") public class User implements Serializable { @Id @Column(name="ID", ...
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
2answers
210 views

CheckNullability of PrimaryKeyJoinColumn

I have a Entity class that has the ObjectX attribute: @OneToOne(fetch = FetchType.LAZY) @PrimaryKeyJoinColumn public ClassOfObjectX getObjectX() { return this.ObjectX; } This ObjectX can“t be null? ...
1
vote
4answers
666 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
859 views

Mapping @OneToOne with @Where clause

I am trying to map an entity as following @OneToOne(mappedBy = "localizedLabel") @JoinColumn(insertable = false, updatable = false) @WhereJoinTable(clause = "locale='en_US'") public Localization ...
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
2answers
125 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
394 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
2answers
354 views

@OneToOne + Table-per-Concrete-Class = exception?

I'm new to Hibernate, and I can't get @OneToOne to function in our code. After much reading, I've constructed an isolates example, and thought to ask the help of the community. Suppose 3 classes: 1 ...