IllegalArgumentException不是测试中的实体

时间:2017-04-11 20:35:05

标签: java hibernate illegalargumentexception

我正在尝试测试一些东西,为此我创建了一个DummyEntity,它位于测试文件夹中的一个包中。我添加了hibernate配置发送

configuration.addAnnotatedClass(DummyEntity.class);

DummyEntity就像这样(在Scala中):

@Entity(name = "dummy")
class DummyEntity{

  @Id
  @GeneratedValue(strategy = GenerationType.IDENTITY)
  var id: Long =_
  @Column
  var name: String =_
  @Column
  var surname: String =_

}

问题在于它没有找到DummyEntity作为实体,所以我无法很好地测试它。

我认为在构建会话工厂时,hibernate无法观察测试文件夹,但我不确定。

为了解决这个问题,我是否必须做一些特别的事情?我不知道还能尝试什么。

谢谢!

0 个答案:

没有答案