0
說我有列的表格(T):a1, a2, b1, b2, c1, c2
休眠虛擬圖例
@Entity
class T {
@ElementCollection
@VirtualMapKey
Map<String, Foo> foos
}
@Embeddable
class Foo {
String v1
String v2
}
如果我想要得到的T實例的a1
場然後我可以調用t.foos['a'].v1
。我想知道是否可以通過Hibernate 5.1或JPA 2.1來實現這一點。請幫助。