scala actor的java.lang.NoSuchMethodError

时间:2014-05-11 17:05:48

标签: scala sbt akka scalatest testkit

我有一个简单的Scala应用程序(taken from here),我想测试它。 与SBT成功编译整个项目。但是,当我使用sbt test启动测试时,我收到以下错误消息:

Could not run test ConnectionTest:java.lang.NoSuchMethodError: akka.actor.Props$.apply(Lscala/Function0;)Lakka/actor/Props;

从互联网搜索中,我得到的印象是我的某些版本控制不兼容,但这只是猜测。 可能出现什么问题?

[测试用例]

import akka.actor.{Props, Actor, ActorSystem, ActorRef}
import akka.testkit.{TestKit, TestActorRef, ImplicitSender}
import org.scalatest.{WordSpecLike, BeforeAndAfterAll}
import org.scalatest.matchers.MustMatchers

class ConnectionTest extends TestKit(ActorSystem("ConnectionSpec"))
  with WordSpecLike
  with MustMatchers 
  with BeforeAndAfterAll {

  override def afterAll() { system.shutdown() }

  "Server" must {
    "bind to port " in {
      // create server
      val server  = system.actorOf(Props[Server], name = "server")

      expectMsg("Bound to /127.0.0.1:8888")
    }    
  }
}

[build.sbt]

name := "MyApp"

version := "0.2"

scalaVersion := "2.10.4"

mainClass := Some("akka.Main")

resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"

libraryDependencies +=
"com.typesafe.akka" %% "akka-actor" % "2.3.2"

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.1.4" % "test"

libraryDependencies += 
"org.scalatest" % "scalatest_2.10" % "2.0" % "test"

1 个答案:

答案 0 :(得分:3)

您需要使用相同版本的Akka for testkit。

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.1.4" % "test"

应该是

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.3.2" % "test"