开发者

解决创建springboot后启动报错:Failed to bind properties under‘spring.datasource‘

目录gXkLmOo
  • 创建spring boot后启动报错:Failed to bind properties under‘spring.datasource‘
  • application.properties与application.yml之间的区别
  • 解决方案
  • 总结

创建spring boot后启动报错:Failed to bind properties under‘spring.datasource‘

这种问题在于我们使用.yml文件时候的格式出现了问题造成的

我们深入探讨一下

application.properti编程客栈es与application.yml之间的区别

看了一篇文章说以前一直用的是application.properties,接触了application.yml后,感觉yml比properties好用,更有层次性,一眼看去更清晰明了!

properties文件都需要写全,yml前面相同的可以不写,一层对应一层就好了。

我们用idea生成spring boot 框架里面是.properties的。

  • application.properties

解决创建springboot后启动报错:Failed to bind properties under‘spring.datasource‘

  • application.yml

解决创建springboot后启动报错:Failed to bind properties under‘spring.datasource‘

在yml文件中有些细节需要注意,冒号后面要空一格再写值,虽然在IDE中都会自动空一格。

解决创建springboot后启动报错: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或者是application.properties,大部分是.myl格式不整齐,不正确。

总结

以上为个人经验,希望能给大家一个参考,也希望大http://www.devze.com家多多支持编程客栈(www.devze.com)。

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜