简体   繁体   English

休眠:如何将变量映射为外键

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

is it possible to declare a variable Long documentID as Foreign key instead of the natural Document document ?Below the example: 在下面的示例中,是否可以将变量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;
   ...
}

Thanks in advance.... 提前致谢....

It seems a similar question have already appeared: Hibernate. 似乎已经出现了类似的问题: 休眠。 Foreign key mapping by id 按ID映射外键

It is not recommended to work with hibernate in such manner. 不建议以这种方式使用休眠模式。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM