编辑通知,我需要对此https://github.com/akka/akka/commit/ce014ece3568938b2036c4ccfd21b92faba69607#L13L6进行反向更改,以使接受的答案与 AKKA 2.1 一起工作,这是在 akkas 主页上找到的稳定分布!
我已经阅读了我可以在 AKKA 上找到的所有教程,但没有发现任何“开箱即用”的作品。
使用 eclipse,我想创建 2 个程序。
Program1:启动演员“joe”并以某种方式使其在 127.0.0.1:some_port 上可用
Program2:在 127.0.0.1:some_port 获得对演员“joe”的引用。向“joe”发送问候消息。
程序 1 应该在收到消息时打印一些东西。我想使用 AKKA 2.1 在 Eclipse 中运行这个示例。有人可以列出 2 个程序(程序 1 和程序 2)以及执行此操作的工作 application.conf 文件吗?
编辑> 让我告诉你我到目前为止得到了什么:
演员
case class Greeting(who: String) extends Serializable
class GreetingActor extends Actor with ActorLogging {
def receive = {
case Greeting(who) ⇒ println("Hello " + who);log.info("Hello " + who)
}
}
程序1:
package test
import akka.actor.ActorSystem
object Machine1 {
def main(args: Array[String]): Unit = {
val system = ActorSystem("MySystem")
}
}
程序2
package test
import akka.actor.ActorSystem
import akka.actor.Props
import akka.actor.actorRef2Scala
object Machine2 {
def main(args: Array[String]): Unit = {
val system = ActorSystem("MySystem")
val greeter = system.actorOf(Props[GreetingActor], name = "greeter")
greeter ! Greeting("Felix")
}
}
应用程序.conf
akka {
actor {
deployment {
/greeter {
remote = "akka://MySystem@127.0.0.1:2553"
}
}
}
}
但是,当我仅启动 Program2 并输出时,该程序有效:
Hello Felix
[INFO] [02/18/2013 12:27:29.999] [MySystem-akka.actor.default-dispatcher-2] [akka://MySystem/user/greeter] Hello Felix
似乎它没有接收我的 application.conf。我尝试将它放在我的 Eclipse 项目的 ./src/ 和 ./ 文件夹中。没有不同。另外,我知道这确实是降级部署,但我只需要一个 hello world 程序即可使用 AKKA。我在这方面花了很多时间,却没有得到一个简单的工作应用程序。