문제

Is it possible to run AKKA on Java 1.5? I'm getting java.lang.UnsupportedClassVersionError: Bad version number in .class file for se.scalablesolutions.akka.actor.LocalActorRef. AKKA version is 0.9.1

There's noting said about the JVM version limitations at http://doc.akkasource.org/getting-started

도움이 되었습니까?

해결책

I have had the same problem with 0.10. I talked to Viktor Klang about it and i think he confirmed that Java 1.5 is not recommended. My advice is:

"Do not even try"

다른 팁

we are leveraging some of the 1.6 features to give Akka some of its awesomeness, however, if there's enough interest we can definitely consider backporting it to 1.5 as a blessed, for-pay, release bundle.

If you're interested just ping me.

Happy hAkking!

As Scala itself should be backward compatible to Java 1.5, I guess you could pull the Akka sources and try to build it with Java 1.5 yourself. Of course it can happen that Akka relies on a Java class that didn't exist in Java 1.5.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top