I can not import filters in playframework 2.3.0
问题 I use playframework 2.3.0, recently I want to add the CSRFFilter when I import csrf in global.scala: import play.filters.csrf._ I get an error for this: [error] G:\testprojects\app\Global.scala:7: object filters is not a member of package play [error] import play.filters.csrf._ My plugin.sbt is ... // The Play plugin addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.0") ... I use Build.scala instead of build.sbt lazy val root = Project("root", base = file(".")).enablePlugins(PlayScala)