Hi All,
In hibernate we have annotations/xml to create one to many/vice-versa, many to many and one to one relationships and then to persist.
But how can we achieve this in Spring Data support? Please give me any link about this(with complete explanation) or explain me by taking small example like
E.g. assume this model:
Customer (customerId, name, age, ...)
Address (customerId, type, street, city, ...)
PaymentOption (customerId, cardnumber, cardtype, ...)
Thanks:
Ramakrishna K.C