1

是否可以将变量声明Long documentID为外键而不是自然的Document document?下面的例子:

@Entity
@Table("document")
class Document{
   ...
   @Id
   Long id;
   ...
}

@Entity
@Table("something")
class Something{
   ....
   //instead of
   @ManyToOne
   Document document;

   // this one with the appropriate annotations
   Long documentID;
   ...
}

提前致谢....

4

1 回答 1

0

似乎已经出现了一个类似的问题:Hibernate。id 外键映射

不建议以这种方式使用 hibernate。

于 2012-08-31T13:26:15.803 回答