Skip to content

Tag: scala

Scala No Method Found Exception

I am using getting the below line of error : My Pom : Any help regarding this ? Answer Check mvn dependency:tree. All your Scala libs will be suffixed with the major Scala version: All of them need to be the same major version otherwise you’ll get binary incompatible libs at runtime. Your maven pom shou…

Java cannot find symbol for imported scala class

I received a Scala jar and need to write a java program to use a method. The imported Scala method definitely works because it has been in production for years. here is the program: Decompiled Scala code: Here are observations: Error message: cannot find symbol constructor VerifyApp() location: class com.comp…

Why should I use jdk1.8.0 instead of jdk-17?

I am studying Scala, with IntelliJ IDEA. Project SDK was always jdk-17, everything was OK, until now. I began practicing in actors (Akka in action using Scala). Problems (like scalac: Error: Error compiling the sbt component ‘compiler-interface-2.11.8-61.0’) started compiling book examples. The ad…