我想在Java中使用Akka actors。
我下载了akka-1.0.zip
并将akka-actor-1.0.jar
添加到Eclipse中的“Build Path”。
然后我写了这个Actor类:
package com.example;
import akka.actor.UntypedActor;
public class MyActor extends UntypedActor {
public void onReceive(Object message) throws IllegalArgumentException {
if (message instanceof String) {
System.out.println("Received: " + message);
} else throw new IllegalArgumentException("Unknown message: " + message);
}
}
但我在Eclipse中遇到错误:
The type scala.Option cannot be resolved.
The type scala.Some cannot be resolved.
The type scala.PartialFunction cannot be resolved.
The type scala.ScalaObject cannot be resoled.
我是否需要在“构建路径”中添加更多文件或者我做错了什么?我没有找到有用的文档。
更新:我在构建路径中添加了scala-library.jar
,上面的错误消失了。但是当我编译并运行应用程序时出现错误:
Exception in thread "main" java.lang.NoClassDefFoundError: net/lag/configgy/ConfigMap
at akka.actor.Actors.actorOf(Actors.java:70)
at com.example.ActorTest.main(ActorTest.java:9)
Caused by: java.lang.ClassNotFoundException: net.lag.configgy.ConfigMap
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 2 more
这是我使用演员的主要课程:
package com.example;
import akka.actor.ActorRef;
import akka.actor.Actors;
public class ActorTest {
public static void main(String[] args) {
ActorRef myActor = Actors.actorOf(MyActor.class);
myActor.start();
System.out.println("My Actor started");
}
}
答案 0 :(得分:2)
在akka-1.0.zip
文件中有scala-library.jar
。尝试将其添加到构建路径。
此外,zip中还有一个lib_managed
目录,其中包含更多库文件。可能还需要其中一些。
为了避免这种情况你应该尝试maven。有一个Akka存储库:http://scalablesolutions.se/akka/repository/se/scalablesolutions/akka/
答案 1 :(得分:2)
你可以找到一个完整的,有效的例子here;它是一个Maven项目,所以它会自动为你获取依赖项。
答案 2 :(得分:1)
我在安装了Scala IDE的Eclipse中的Java项目中使用Akka看到了这个问题。使用未安装Scala IDE的Eclipse实例时,问题就消失了。 Eclipse可能会被两个Scala库混淆吗?
答案 3 :(得分:0)
我不知道Akka演员,但似乎你需要一些scala支持(构建路径上的lib)。