Scala中的JPA / Hibernate CollectionOfElements

时间:2012-05-07 15:05:33

标签: hibernate scala collections

在Scala中,如果我定义一个简单的@org.hibernate.annotations.CollectionOfElements,它就不起作用。

不知何故,我无法在scala中指定@CollectionOfElements(targetElement = xyz.class)之类的东西。它在输入“.class”时呕吐。

任何人都知道如何让任何CollectionOfElements注释系列在scala中工作?我只想要像以下一样简单的工作:

@org.hibernate.annotations.CollectionOfElements (targetElement = Long.class)
var updatedQuestions : java.util.List[Long] = _

BTW我在How to create custom query for CollectionOfElements发布了这个,但意识到这可能不是Scala相关的线程。 我的问题特定于在Scala中使用此功能。我在标准Java中使用它没有任何问题。

1 个答案:

答案 0 :(得分:2)

您是否尝试过以下操作?

@org.hibernate.annotations.CollectionOfElements (targetElement = classOf[Long])