I am having an object called
Customer, It will have a relationship with
address object (one-to-one relation) and
Tickets object (one-to-many relation). [Each customer can have many tickets]. And Each ticket will have a
payment object (One-to-one relation). I specified the relation in hibernate annotation.
I am getting the below error when executing the
test,
My Application code is
My objects, Customer :
Address :
Tickets :
Payment :
Hibernate Configuration is :
Where am i wrong in this code ?