玩框架2.2(斯卡拉)play.api.cache不包括作为标准呢?(Play Framework

2019-10-19 07:55发布

我用的玩2.2(斯卡拉)。 因为它没有发现我不能导入play.api.cache._。 我认为它不会作为标准版的一部分? 如何启用/得到它。 我是否需要手动SBT包括它建立的个人资料?

奇怪的是,像高速缓存的重要组成部分,不包括作为标准。

谢谢

Answer 1:

这是正确的。 按照迁移指南 :

Play cache is now split out into its own module. If you are using the Play cache, you will need to add this as a dependency. For example, in Build.scala:

val addDependencies = Seq(
   jdbc,
  cache,
  ...
)

或者,如果你使用build.sbt,你可以在那里添加。 cache似乎是在为新的2.2.x项目产生build.sbt自动包含。



文章来源: Play Framework 2.2 (scala) play.api.cache not included as standard?