Here is a simple test I'm using to invoke a Scala method from Java:
public static void main(String args[]) { java.util.Map<String, java.util.List<String>> rec = news.recommend.DriverObj.runTest(); System.out.println(rec.toString()); }
Here is the definition of the Scala method:
def runTest: java.util.Map[String, java.util.List[String]] = { new java.util.HashMap[String, java.util.List[String]] }
But it throws an error:
Exception in thread "main" java.lang.NoClassDefFoundError: scala/Function1 at news.recommend.DriverObj.runTest(DriverObj.scala)
What should I do to make this running smoothly?
Update : I'm running it via Eclipse and my build path contains :
So Scala library should be found ?
adding the Scala dependency to the maven build can fix the issue :
<dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.10.3</version> </dependency>
As for me, in the configuration of "Run/Debug configurations" [idealJ]
remember to choose the "Include dependencies with "Provided" scope"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With