在intellij中导入正确的包后无法解析符号

时间:2018-05-18 01:30:01

标签: scala apache-spark intellij-idea apache-spark-sql

我想在when()中使用org.apache.spark.sql.Column方法,当我继续前进时,事实证明是这样的。 enter image description here

我尝试过类似的东西 IntelliJ inspection gives "Cannot resolve symbol" but still compiles code 但它只是不起作用,我现在该怎么办?

1 个答案:

答案 0 :(得分:1)

when()位于the org.apache.spark.sql.functions

所以你需要import函数

import org.apache.spark.sql.functions._

import org.apache.spark.sql.functions.when