0

我有一个 A 类。每个 A 像 a1 都与其他 A 像 a2 相似,具有相似性 s1_2 所以我设计了一个这样的类:

class A{
    // some properties + id


    Map<A,double> semilars;

}

我如何在 semilars 属性上放置休眠注释来构建这样的表:

|       table A       |
-----------------------
|id| other properties | 

|  similarity   table    |
--------------------------
| id1 | id2 | similarity |
4

1 回答 1

-1

我找到了 !!!

只需 @ElementCollection 即可解决问题!快乐编码。

于 2012-12-03T19:56:46.547 回答