PlayFramework with Scala and Morphia

Posted by AKRamkumar on Stack Overflow See other posts from Stack Overflow or by AKRamkumar
Published on 2011-02-21T22:22:27Z Indexed on 2011/02/21 23:25 UTC
Read the original article Hit count: 519

Filed under:
|
|

I keep getting this exception:

Oops: CannotCompileException An unexpected error occured caused by exception CannotCompileException: [source error] ds() not found in models.dc

What is wrong with my code?

Here is models.ds

package models

import com.google.code.morphia.annotations._

@Embedded
class ds{

  @Indexed
  var xs : Double=0

  @Indexed
  var xc : Double=0

  @Indexed
  var ys : Double=0

  @Indexed
  var yc : Double=0

  @Indexed
  var zs : Double=0

  @Indexed
  var zc : Double=0
}

Here is models.dc

package models

import com.google.code.morphia.annotations.{Embedded, Entity, Indexed}

@Entity
class dc{

  @Indexed
  var name : String = null

  @Embedded
  var summary : ds = new ds()
}

© Stack Overflow or respective owner

Related posts about scala

Related posts about mongodb