解决创建springboot后启动报错:Failed to bind properties under‘spring.datasource‘
作者:Arenaschi
在Spring Boot项目中,application.properties和application.yml是用于配置参数的两种文件格式,properties格式简洁但不支持层次结构,而yml格式支持层次性,可读性更好,在yml文件中,要注意细节,比如冒号后面需要空格
创建spring boot后启动报错:Failed to bind properties under‘spring.datasource‘
这种问题在于我们使用.yml文件时候的格式出现了问题造成的
我们深入探讨一下
application.properties与application.yml之间的区别
看了一篇文章说以前一直用的是application.properties,接触了application.yml后,感觉yml比properties好用,更有层次性,一眼看去更清晰明了!
properties文件都需要写全,yml前面相同的可以不写,一层对应一层就好了。
我们用idea生成spring boot 框架里面是.properties的。
- application.properties
- application.yml
在yml文件中有些细节需要注意,冒号后面要空一格再写值,虽然在IDE中都会自动空一格。
现在再看我们开发发生的问题 就是这里没有空格或者格式不对
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或者是application.properties,大部分是.myl格式不整齐,不正确。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。