java.lang.NullPointerException at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue
Post by:kaleeswaran Gounder
,
Greenhorn
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 ?
Screen-Shot-2013-05-22-at-9.23.01-AM.png
Relationship Diagram
Post by:kaleeswaran Gounder
,
Greenhorn
I found the answer, The mistake is on the below line of Payment POJO.