1
vote
5answers
4k 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 t …
1
vote
1answer
42 views
Django Admin: OneToOne Relation as an Inline?
I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base Product model, and I'd like to edit it all on one page.
It is possibl …
0
votes
0answers
104 views
hibernate OneToOne PrimaryKeyJoinColumn gives ClassCastException while saving the object
java.lang.ClassCastException: org.hibernate.type.SerializableType incompatible with org.hibernate.type.EntityType
at org.hibernate.id.ForeignGenerator.generate(ForeignGenerator …
1
vote
2answers
511 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 eno …
1
vote
1answer
88 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")
pr …
1
vote
4answers
1k 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(Boo …
1
vote
1answer
221 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 …
