配置了yml文件但是提示cannot resolve property XXX

很多时候我们从网上找了一些配置yml的资源,但会提示cannot resolve property XXX,导致无法加载相应的资源从而运行错误。

org.yaml.snakeyaml.scanner.ScannerException: while scanning a simple key

在这里,我们要思考的问题:
1.相关资源的位置是否写对,即它原本是sping根下的但你另外在其他地方写了。
2.Springboot版本不支持问题。我发现springboot的版本不同,yml里的配置的写法略有不同,比如配置druil

springboot1.5.1的

spring:
    datasource:
        # 数据库访问配置, 使用druid数据源
        type: com.alibaba.druid.pool.DruidDataSource
        url: 
        username: root
        password:
        druid:
            driver-class-name: com.mysql.cj.jdbc.Driver
            # 连接池配置
            initial-size: 5

springboot 2.0

spring:
    datasource:
        druid:
      		 # 数据库访问配置, 使用druid数据源
       		 type: com.alibaba.druid.pool.DruidDataSource
       		 url: 
       		 username: root
       		 password:
             driver-class-name: com.mysql.cj.jdbc.Driver
             # 连接池配置
             initial-size: 5

3.yml的写法问题
如username: root,“:”和root之间必须有一个空格,“:”和username紧贴无空格

你可能感兴趣的:(SpringBoot)