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.

[361 byte] By [Gantua] at [2007-11-27 6:15:46]
# 1
Which DAO/ORM are you using?It sounds like you just need to doAddress address = new Address();somewhere.
BalusCa at 2007-7-12 17:26:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
My DB is located on Derby,I am trying to reach from jsp pages. Like NewPerson.jsp from wich i want to create new person and his address. It can see person bean but can not reach address bean.Thanx.
Gantua at 2007-7-12 17:26:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...