toplink « ejb « Java Enterprise Q&A





1. How to force TopLink to set up OneToMany relation immediately?    stackoverflow.com

I have two entites, Person and Teacher, with a OneToMany relationship:

public class Person implements Serializable {
    @Id
    @Column(nullable = false)
    private String ...