0

我有 2 个表 - 人员和请求。

Person (id is PK):  
id  name  req_id
Requests(id is PK):  
id rid

在java中:

@Entity
public class Person{
@Id
Int id;
String name;
String req_id;
...}    

@Entity
public class Requests{
@Id
Int id;
String rid;
...}` 

我想做的是用req_id映射(OneToOne)摆脱。
不幸的是,我不能使用@SecondaryTable,因为这些表不是由主键映射的。我将不胜感激任何帮助...

4

1 回答 1

0

我无法确切理解您为什么需要这样做,但这可能对您有什么帮助如何使用非主键作为参考进行一对一的休眠映射

于 2013-06-07T06:55:29.330 回答