1
我有兩個這樣的表。休眠映射使用註釋
Company
company_id int(11) not null auto_increment primary key,
name varchar(200) not null
Employee
employee_id int(11) not null auto_increment primary key,
company_id int(11) not null,
employee_name varchar(50) not null,
foreign key(company_id) references Company(company_id) on updade cascade on delete cascade
現在我要訪問員工信息以及僅用
from Employee
使用Hibernate的公司信息。我是新的休眠我不知道哪種方法將被使用。連接表,主鍵連接或其他。請幫忙。