Hi Gurus,
I am wondering how to write the model, hbm.xml for table
Company
-------
id(PK)
name
address
typeid(fk)
Type
----
id(PK)
type
class Company(){
int id;
String name;
String address;
Type type;
}
class Type(){
int id;
String type;
}
(with get/set methods)
How to write the hbm?
I am using the hibernate 3.x.