I am looking for a way to get information about my runtime hibernation classes. In details I need information like
The class ABC has properties a, b, and c, where c is a list and an association with class XYZ
for class
public class ABC { private int a; private String b; @OneToMany Private List<XYZ> c; }
All that is needed at runtime. I'm sure Hibernate knows all this at runtime, but I don't know how to get this information.
source share