could someone help me to understand how can I define an entity with JPA mapping that has a relation with it self?

For example, my entity is CompanyDivision, divisionA contains divisionB, divisionC and divisionB contains divisionB1, divisionB2

  • divisionA
    • divisionB
      • divisionB1
      • divisionB2
    • divisionC

Thank you!

link|improve this question

44% accept rate
feedback

1 Answer

up vote 4 down vote accepted

It's not different from a relation between 2 different Entities. Here's an example:

class CompanyDivision {

    @OneToMany(mappedBy = "parentDivision")
    private Set<CompanyDivision> childDivisions = new HashSet<CompanyDivision>();

    @ManyToOne
    @JoinColumn(name = "FK_PARENT_DIVISION")
    private CompanyDivision parentDivision;
}
link|improve this answer
THANK YOU VERY MUCH :) – Fabio Beoni Apr 30 '10 at 17:25
@Fabio, give the man an upvote ;-) – opyate Dec 10 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

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