繁体   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