Error:(45, 63) Unable to find encoder for type stored in a Dataset. Primitive types (Int, String, etc) and Product types (case classes) are supported by importing spark.implicits._ Support for serializing other types will be added in future releases.
val ds = spark.read.json("F:\\BigData\\employees.json").as[Employee]
解决方法:
创建 SparkSession后引入语句:
import spark.implicits._