1
如果我有一類結構如下所示(註釋去掉):如何用Hibernate註釋有條件地映射集合?
public class Person {
String store;
Swatch swatch;
Collection<Paint> paints;
}
public class Swatch {
String color;
}
public class Paint {
String color;
String store;
}
店是從來沒有空,是人與塗料之間使用的密鑰。我們的目標是將所有Paint記錄與具有與Person相同商店的Swatch相同的顏色進行匹配。但是,Swatch可能爲null,或者其顏色屬性可能爲null(在兩種情況下都會返回與Person具有相同商店的所有Paints)。
是否有JPA或Hibernate基於註解,將構建在油漆收集此查詢?
這聽起來更像是您應該構建的查詢的工作。 –