写代码时候莫名其妙的遇到个错,启动失败:
Attempted to load applicationConfig: [classpath:/application.yml] but snakeyaml was not found on the classpath
初始以为是yml文件错误,但是看了很多遍yml没错,之后又以为是文件格式错误,但是全部改为UTF-8也不行。
后来去查了资料,发现这个错得加个依赖:
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
具体为什么会出现这个错,等有空了再研究研究。