启动spring-boot报错:Application failed to start with classpath: unknown

启动spring-boot经常会报错:Application failed to start with classpath: unknown

很多原因是yml配置文件的语法问题,参考了stackoverflow

https://stackoverflow.com/questions/49715639/java-lang-illegalstateexception-failed-to-load-property-source-from-location-c

发现一个检查application.yml文件配置语法的工具。

地址:

http://www.yamllint.com/

例子:

下图标红部分是yaml平台的语法报错提示

 

启动spring-boot报错:Application failed to start with classpath: unknown_第1张图片

 

 

根据提示信息将sever改成了server:

启动spring-boot报错:Application failed to start with classpath: unknown_第2张图片

 

Go之后,语法没问题 提示Valid YAML !

然后yaml格式化的配置放到我本地的工程的application.yml里,顺利启动spring-boot!

 

你可能感兴趣的:(spring-boot)