spring boot启动报错: Failed to bind properties under 'spring.datasource'

spring boot服务启动时,如果报出如下错误:

Failed to bind properties under 'server' to org.springframework.boot.autoconfigure.web.ServerProperties或

Failed to bind properties under 'spring.datasource' to org.springframework.boot.autoconfig.jdbc.DataSourceProperties

解决方案为:

检查配置文件配置的格式是否正确,我使用的配置文件为application.yml,配置项如下:

server:

     port:  8010

spring:

    datasource:

          driver-class-name:  com.ibm.db2.jcc.DB2Driver

          url:  jdbc:db2://22.5.229.86:50000/clsdb

          username:  upsdb

          password:   upsdb

注意:在(port:  8010)配置项中,port:与8010之间必须要有空格,如无空格,系统将会抛出上面介绍的错误。

 总之,如果抛出文章开头介绍的错误,请检查配置文件的格式。

你可能感兴趣的:(spring boot启动报错: Failed to bind properties under 'spring.datasource')