如何在embadable对象中映射double的集合?

时间:2016-05-11 08:11:13

标签: java mongodb hibernate jpa hibernate-ogm

@Entity
public class foo{
   @Id
   private long id;
   @Embedded
   private Bar bar;
}

@Embeddable
public class Bar {
   @???
   private List<Double> locations;

}

我正在使用hibernate Ogm和jpa以及mongodb, 当我坚持Foo对象然后列表位置不保存在mongodb

目前我已经注释了此类提交的文件

@ElementCollection(targetClass=Double.class,fetch=FetchType.EAGER)
@Column(name="locations")
private List<Double> locations;

但这不适合我。所以我要做的就是保存这份清单

0 个答案:

没有答案