max wrote:
head is the latest; the changelog is just not updated.
Hi max:
I download the newest src and build it. I copy the jar to
Code:
eclipse\plugins\org.hibernate.eclipse_3.2.0.beta6a\lib\tools
I use jbosside2.0. My database have three tables:
table1:
Code:
table person{
id integer primary key;
name varchar;
}
table2
Code:
table address{
id integer primary key;
name varchar;
}
table3:
Code:
table person_address{
person_id;
address_id;
primary key(person_id,address_id);
}
When I use reverse engine ,I select these three table. I want to the tool
create two java class and two hbm. And create a many-to-many mapping.
But it create three java class and create two one-to-many mapping . How to create on many-to-many mapping using these three tables ?