如何在IntelliJ IDEA中声明Scala的主类?

时间:2016-08-21 10:07:39

标签: scala intellij-idea

我正在尝试使用Scala插件,scala-sbt 0.13和jdk-1.8在IntelliJ IDEA 2016.2.1中实现最简单的编码。这是代码:

object HelloWorld {
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}

它编译错误

Error: Could not find or load main class HelloWorld

在运行/调试配置中,这是一个警告'模块中找不到类HelloWorld ...'

你能否对此有所了解?

1 个答案:

答案 0 :(得分:1)

右键单击IntelliJ IDE中的Scala项目,然后单击"打开模块设置"。现在,点击"全球图书馆"并查看是否存在Scala库。如果没有Scala库,请添加它。

请参阅以下快照。

enter image description here