我不知道如何让twirl模板与Intellij IDEA 14配合使用
我的build.sbt:
libraryDependencies += "com.typesafe.play" % "twirl-api_2.11" % "1.1.1"
我的文字模板:
@(date: java.util.Date)
hello world
我要求渲染:
println(play.twirl.api.Txt.testTemplate.render(new Date()))
编译错误:
Error:(26, 34) value testTemplate is not a member of object play.twirl.api.Txt
println(play.twirl.api.Txt.testTemplate.render(new Date()))
^
我在某处读到我应该使用以下方法在Intellij之外编译模板:
sbt compile
我不确定这是否有效。此外,我有安装sbt的插件,但我不知道如何在mac上设置命令行版本。
对我有什么建议吗?