hibernate:如何将变量映射为外键

时间:2012-08-31 13:00:56

标签: java hibernate mapping

是否可以将变量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;
   ...
}

提前致谢....

1 个答案:

答案 0 :(得分:0)

似乎已经出现了类似的问题:Hibernate. Foreign key mapping by id

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