scalac专题

Error:scalac: Error: org.jetbrains.jps.incremental.scala.remote.ServerException

使用idea 编译scala程序时,如果出现上述错误, 原因是因为JDK与Scala的版本不匹配造成的。 解决方法: 方法1.重新安装1.8版本的的JDK。 方法2.如果当前已经是1.8版本的JDK时,需要做的就是降低scala的版本。 首先,在官网下载scala;(http://confluence.jetbrains.com/display/SCA/Scala+Pl

scalac: Token not found:

IDEA 执行 scala 程序时,报 scalac: Token not found错误 解决: Settings -> Plugins 把 Scala 插件停用或者卸载,重启 IDEA,再启用 或者安装Scala 插件,重启 IDEA

idea运行spark程序报错scalac: Error: illegal cyclic inheritance involving trait Iterable

执行一个spark的scala写的类,报错 scalac: Error: illegal cyclic inheritance involving trait Iterable scala.reflect.internal.Types$TypeError: illegal cyclic inheritance involving trait Iterable 我们打开idea项目的Projec

IDEA 2023.2.2 使用 Scala 编译报错 No scalac found to compile scala sources

一、问题 scala: No scalac found to compile scala sources 官网 Bug 链接 二、临时解决方案 Incrementality Type 先变成 IDEA 类型 Please go to Settings > Build, Execution, Deployment > Compiler > Scala Compiler and cha

使用Idea创建Scala项目报错scalac: Error: Error compiling the sbt component ‘compiler-interface-2.10.0-52.0‘

错误日志: scalac: Error: Error compiling the sbt component 'compiler-interface-2.10.0-52.0' sbt.internal.inc.CompileFailed: Error compiling the sbt component 'compiler-interface-2.10.0-52.0'     at sbt.

Error:scalac: Error: Error compiling the sbt component compiler-interface-2.11.8-55.0

错误 ```java Error:scalac: Error: Error compiling the sbt component ‘compiler-interface-2.11.8-55.0’ sbt.internal.inc.CompileFailed: Error compiling the sbt component ‘compiler-interface-2.11.8-55.0’ a

IDEA运行scala程序报错:Error:scalac: bad option: '-make:transitive'

IDEA运行scala程序报错:Error:scalac: bad option: '-make:transitive' 解决方案: 1)找到你该项目的所在目录,进入这个项目根目录下; 2)执行命令:cd .idea; 3)打开scala_compiler.xml文件,将此行<parameter value="-make:transitive" />注释掉; 4)重启IDEA即可。