我的配置文件包中有一个对象 profileModel,我的 profile.scala.html 文件有以下代码
@(model: ProfileModel)
当我编译时,它给出了一个错误递归值模型需要类型
但是当我用我的 application.conf 将这个类移动到模型时
ebean.default="models.*"
有用。我的猜测是 scala 编译器会在编译时自动将 models.* 添加到类路径中
有没有办法在不将类移回模型包的情况下完成这项工作?
我正在使用使用 Scala 2.10.2 构建的 play 2.2.1