簡體   English   中英

休眠:如何將變量映射為外鍵

[英]hibernate: How to map a variable as foreign key

在下面的示例中,是否可以將變量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;
   ...
}

提前致謝....

似乎已經出現了類似的問題: 休眠。 按ID映射外鍵

不建議以這種方式使用休眠模式。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM