yml配置文件读取出错:org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping in 'reader'

spring:
  application:
    name: web-test
  thymeleaf:
    cache: false
    enabled: false
  devtools:
    restart:
      enabled: true

在热部署的时候,读取yml文件出现while parsing a block mapping  in 'reader'

或者 while scanning for the next token found character '\t(TAB)

以上两种都是因为写yml配置的时候,格式不对。

切记不要用Tab键去缩进,不同的ide用Tab键的结果可能不同,采取空格符号去缩进。

另外缩进的时候,记得每一层缩进两个字母,不要多或少,切记也别重名。

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