spark 讀取配置文件的時(shí)候使用到了 snakeyaml 包.讀取配置時(shí)總是報(bào)錯(cuò)如下圖
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.26</version>
</dependency>
解決 :
//錯(cuò)誤的寫(xiě)法,在本地測(cè)試可以使用
val yaml = new Yaml(new Constructor(classOf[com.missfresh.utils.SpeedyConfig]))
//上線后需要使用如下寫(xiě)法
val yaml = new Yaml(new CustomClassLoaderConstructor(classOf[SpeedyConfig], Thread.currentThread.getContextClassLoader))