已将激活器安装为:
brew install typesafe-activator
创建了一个新项目作为:
activator new my-first-system lagom-java
更改目录并以activator run
的形式运行项目:
[info] Set current project to my-first-system (in build file:/Users/arungupta/workspaces/my-first-system/)
[info] Updating {file:/Users/arungupta/workspaces/my-first-system/}my-first-system...
[info] Resolving jline#jline;2.12.1 ...
[info] Done updating.
java.lang.RuntimeException: No main class detected.
at scala.sys.package$.error(package.scala:27)
[trace] Stack trace suppressed: run last my-first-system/compile:run for the full output.
[error] (my-first-system/compile:run) No main class detected.
[error] Total time: 0 s, completed Mar 23, 2016 12:08:22 PM
这是JDK版本:
java version "1.8.0_60"
Java(TM) SE Runtime Environment (build 1.8.0_60-b27)
Java HotSpot(TM) 64-Bit Server VM (build 25.60-b23, mixed mode)
缺少什么?
根项目上没有可运行的主类,这就是异常的原因。要使用runAll
启动所有Lagom服务,请参阅Lagom入门文档。
顺便说一句,当在根项目上执行任务时,我们有一个将run
作为runAll
别名的票证。
只需执行activator
而不是activator run
,然后按照上面和入门指南中的建议执行runAll
。