使用EJB3 / JBoss,如何使用表中的复合元素,例如
@Entity
public class X {
@Id
private int id;
private Coordinate coordinate;
}
其中Coordinate
定义为(为了便于阅读而省略了setter / getters):
public class Coordinate {
int x;
int y;
}
所有内容都应映射到表格X
,其中包含id
,x
,y
列。
答案 0 :(得分:1)
查看@Embedded和@Embeddable注释。