我有一个案例类,看起来像这样:
import com.novus.salat.annotations.raw.Key
import org.bson.types.ObjectId
case class Users(
_id: ObjectId,
email: String,
password: String,
firstName: String,
lastName: String,
company: Option[String],
position: Option[String],
enabled: Boolean)
还有一个简单的沙拉道:
import com.novus.salat.dao.SalatDAO
import org.bson.types.ObjectId
import com.novus.salat.global._
object UsersDAO extends SalatDAO[Users, ObjectId](
collection = MongoFactory.getCollection("usersCollection"))
所以现在我想把"_id"改为"id"。我认为Salat@Key注释确实是为了这个目的。所以我写:
...
@Key("_id") id: ObjectId,
...
当我尝试UsersDAO.find(MongoDBObject.empty)
时,我会得到一个异常
java.lang.NoSuchMethodException: com...Users$.apply$default$1()
有趣的是,如果我做同样的事情,但对于另一个"id:String"的类,我会得到这个异常
java.lang.Exception: class com...AnotherClass requires value for 'id'
有人能把阳光洒在上面吗?
您需要修复导入。使用
import com.novus.salat.annotations._
以将CCD_ 2注释适当地定向到CCD_。
请参阅https://github.com/salat/salat/wiki/Annotations