2

我正在使用 scala 2.8.1、scalatra 2.0.0.M2、squeryl 2.8.0 和 scalate 2.0.0 和 sbt 开发 Web 应用程序

我有一个问题,显然是模型或模式类。当我运行测试时,我得到:

java.lang.NoClassDefFoundError: Could not initialize class org.mycompany.myproject.model.myschema

如果我尝试在 sbt 的 console-quick 上运行以下代码,则会出现错误:

import org.mycompany.myproject.model.myschema
myschema.mytable

错误:

java.lang.RuntimeException: Could not deduce Option[] type of field 'field1' of class org.mycompany.myproject.model.myotherclass

正如我所料,无论我尝试在该架构上调用什么方法,都会弹出错误。

现在这是我的架构在该表声明附近的样子:

object myschema extends Schema {
  val myotherclasses = table[myotherclass]
  val otherClassManyToMany = manyToManyRelation(yetanotherclass, mytables).
       via[myotherclass]((e,ssr, sse) => (e.id === sse.leftId, sse.rightId === ssr.id))
...
}

这是我的代码表的样子:

class myotherclass(
  val rightId: Long,
  val field1: Option[Long],
  val field2: Option[Long],
  val foreiginKey: Long,
  val leftId: Long) extends KeyedEntity[CompositeKey2[Long, Long]] {
  def id ={compositeKey(sesestacao, sessensor)}
}

最后是我的 sql 定义:

create table telemetria.myotherclass (
  rightId numeric(8,0) references telemetria.estacao(estcodigo),
  field1 numeric(8,0),
  field2 numeric(8,0),
  foreiginKey smallint references myschema.thirdtable(idOfThird),
  leftId smallint references myschema.yetanotherclass(id),
  primary key (rightId, leftId)
);

我还没有将第三个表映射到我的代码中。会发生什么?

4

1 回答 1

5

使用 Squeryl,如果您有任何类型为 Option[_] 的字段,则必须定义默认构造函数。所以,对于这种情况,你会有

def this() = this(0l, Some(0l), Some(0l), 0l, 0l)

myotherclass以便 Squeryl 可以确定 Option[_] 列的类型。请参阅此处标记为Nullable 列的部分与 Option[] 字段映射http://squeryl.org/schema-definition.html

于 2011-02-21T21:56:30.550 回答