I have the following POJO:


public class SampleBean1 {
    @Id
    @GeneratedValue(generator = "system-uuid")
    @GenericGenerator(name = "system-uuid", strategy = "uuid")
    protected String id;

    @OneToOne(cascade=CascadeType.ALL)
    @JoinColumn(name="OneToOneID")
    protected SampleBean1 oneToOne;

    @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY)
    @JoinColumn(name="OneToManyID")
    protected List<SampleBean1> oneToMany;

    @ManyToOne(cascade=CascadeType.ALL)
    @JoinColumn(name="ManyToOneID")
    protected SampleBean1 manyToOne; 

    @ManyToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
    @JoinTable(name="SampleBeanManyToMany",
        	joinColumns={@JoinColumn(name="LeftID")},
        	inverseJoinColumns={@JoinColumn(name="RightID")})
    @IndexColumn(name="ManyToManyIndex")
    protected List<SampleBean1> manyToMany;

    ...
}
I'm making a library to detect OneToOne or ManyToOne (and doing appropriate operations). It always comes back as ManyToOne.
//Get the class' metadata
ClassMetadata cmd=sf.getClassMetadata(o.getClass());

for(String propertyName:cmd.getPropertyNames()){
    org.hibernate.type.Type propertyType=cmd.getPropertyType(propertyName);

    //Handle ___ToOne
    if (propertyType.isEntityType()){
    	EntityType et=(EntityType)propertyType;
    	System.out.printf("%s=%s\n",propertyName,et.isOneToOne()?"true":"false");
    }
}
Here's what I get back:
manyToOne=false
oneToOne=false

In the debugger the Type of the "oneToOne" is ManyToOneType!! Did I do something wrong or is this a Hibernate defect?

EDIT: Here's how the OneToOne's can work. Let's create three SampleBeans (SB1, SB2, SB3) as described in a comment below. First, the data in POJO form:

SB1.oneToOne=SB2
SB2.oneToOne=SB3
SB3.oneToOne=null

Again the data in database form:

ID|OneToOneID
1|2
2|3
3|null

As long as OneToOneID has a unique constraint, would this type of relation be OneToOne? Is there another way to model OneToOne? Note that the POJO above is intended unidirectional OneToOne. Could that be the issue?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

That's much clearer now, thank you.

Is it really SampleBean1 in both cases (e.g. entity itself and the OneToOne mapped property) or is it a typo? If they are the same, I'm pretty sure it's illegal (how do you imagine that mapping would work)? I'm a bit surprised it's quietly downgraded to "many-to-one" instead of throwing an error, but perhaps that's what Hibernate Annotations mapper does.

link|improve this answer
SampleBean1 is mapped to itself on each relation. I figured it would make it easier to test. Can you not have a OneToOne relation with yourself in Hibernate? In SQL you can just add a Foreign Key and all is well. – User1 Sep 4 '09 at 23:26
So say you have three instance of SampleBean1 - SB1, SB2 and SB3. SB1's oneToOne property points to SB2 PK. SB2's oneToOne property points to SB3 PK. Now which "one" is SB2 one-to-one'd with - SB1 or SB3? :-) That's why it's illegal. – ChssPly76 Sep 4 '09 at 23:35
Well. What if you have two entities, A and B, with 1-to-1 relationships to each other. What if both A1 and A2 point to B1? Which "one" is B1 one-to-one'd with? I guess if the point you proposed is illegal, that's not because of the example you gave. – André Neves Sep 5 '09 at 0:46
@Andre - your example is not of one-to-one relationship. It's many-to-one from A to B or one-to-many from B to A – ChssPly76 Sep 5 '09 at 2:23
1  
You can always check the actual annotation. You know the property name and the class; use reflection to grab the field and get method (choosing between the two can be problematic; I suggest you check both), and call setAccessible() on it followed by getAnnotation(OneToOne.class). If the latter does not return NULL, it was marked OneToOne. I'd be cautious with this, though - the fact that Hibernate quietly 'downgrades' an illegal OneToOne to ManyToOne seems rather iffy to me, that may very well change in the future. – ChssPly76 Sep 8 '09 at 16:15
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.