I have the following many-to-many mapping:
public class Student implements
{
@Id
@GeneratedValue
private Integer xID;
@ManyToMany
@JoinTable(name = "x_y",
joinColumns = { @JoinColumn(name = "xID")},
inverseJoinColumns={@JoinColumn(name="yID")})
private Set<Cat> cats;
}
public class Cat implements { @Id @GeneratedValue private Integer yID;
@ManyToMany
@JoinTable(name = "x_y",
joinColumns = { @JoinColumn(name = "yID")},
inverseJoinColumns={@JoinColumn(name="xID")})
private Set<Student> students;
}
Please ignore the object and property names, they are ficticious and irrelevant. This compiles and works fine. I can also do this:
Entitymanager em = emf.createEntityManager();
em.getTransaction().begin(); Student s = new Student(); Student s2 = new Student(); Cat c = new Cat(); em.persist(s); em.persist(s2); em.persist(c); s.getCats().add(c); c.getStudents().add(s2); em.getTransaction().commit();
My problem comes when I get the objects back from the database.
em.getTransaction().begin();
Student s = em.find(Student.class, 2);
Cat c = em.find(Cat.class, 3);
if( c != null ) System.out.println(c.getYID() + ": " + c.getStudents()); if( s != null ) System.out.println(s.getXID() + ": " + s.getCats()); em.getTransaction().commit();
The printout is:
3: {IndirectSet: not instantiated}
2: {IndirectSet: not instantiated}
This may very well be normal behavior. It just seems to me that when I get the objects back from the table, their Sets relating to the other objects should be populated. What I mean to say is, since the junction table looks like this:
X | Y
2 | 3
1 | 3
em.find(Cat.class,3) should return a Cat object with a set of {1,2} for getStudents() and em.find(Student.class,2) should return a Student object with a set of {3} for getCats().
Is there any way to make this possible?
Thanks, B.J.