Given a simple connection to objects:
@Entity public class Single { @OneToMany public Set<Multiple> multiples; }
How does Hibernate find out that the common type of multiples is Multiple? This information cannot be found with the standard API Reflection.
I am browsing the source code but donโt know where to start.
java generics hibernate
Mwanji ezana
source share