Play Framework 2.3.x如何运行示例应用程序?
Play Framework 2.3.x how to run the sample applications?
我安装了 Play 2.3.7,并且我有 activator
命令与我在本地创建的其他播放应用程序一起使用。
但是,当我尝试克隆 Play Framework from github and run one of the 2.3.x sample applications 时,activator
命令失败并出现空指针异常。同样,如果我尝试 将项目导入 到 IntelliJ 并从 .sbt 文件构建,我会得到同样的错误:
我是否需要在 build.sbt
文件中更改某些内容才能使其正确加载?我猜这是我忽略的非常简单的事情。
TL;DR:我如何 运行 从 github 克隆的 Play 2.3.x 示例应用程序?
指定您在 plugins.sbt
中拥有的确切播放版本
来自
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("play.version"))
至(假设您使用的是 play 2.3.1)
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.1")
然后activator clean
然后运行。
Source
我安装了 Play 2.3.7,并且我有 activator
命令与我在本地创建的其他播放应用程序一起使用。
但是,当我尝试克隆 Play Framework from github and run one of the 2.3.x sample applications 时,activator
命令失败并出现空指针异常。同样,如果我尝试 将项目导入 到 IntelliJ 并从 .sbt 文件构建,我会得到同样的错误:
我是否需要在 build.sbt
文件中更改某些内容才能使其正确加载?我猜这是我忽略的非常简单的事情。
TL;DR:我如何 运行 从 github 克隆的 Play 2.3.x 示例应用程序?
指定您在 plugins.sbt
中拥有的确切播放版本来自
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("play.version"))
至(假设您使用的是 play 2.3.1)
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.1")
然后activator clean
然后运行。
Source