Inserting data into multiple tables(on DB).
Hi,
I have 2 tables in DB.
Person{ID, Name,Surname}
Address{city,street,tel.zip}
Where both of them are entity classes.
I want to insert data from one jsp page
I tried it but i got error :
javax.servlet.ServletException: Target Unreachable, 'address' returned null
I need some hints.
Thank you.

