springboot2.4 版本以上配置datasource的坑

1、springboot2.4以下版本

配置文件默认是bootstrap.yml 格式


2、springboot2.4以上版本


配置文件默认是application.yml 格式
这个搜一下还是有博客说明的


3、我现在的问题是springboot项目加载nacos的配置文件中的datasource


2.4以下的版本的时候
datasource配置数据源这些参数默认都可以配置到nacos的配置文件中。

spring:
#  datasource:
#    url: jdbc:mysql://XXXXX:3306/test?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
#    username: XXXX
#    password: XXX
#    driver-class-name: com.mysql.cj.jdbc.Driver


 

 2.4以上的时候就必须要有这个数据源这些参数datasource

spring:
  datasource:
    url: jdbc:mysql://XXXX:3306/test?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
    username: XXX
    password: XXX
    driver-class-name: com.mysql.cj.jdbc.Driver

 即必须的这样显示配置这些参数再springboot项目的配置文件中。不然启动项目他会提示

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
	If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active).

4、分析问题


springboot版本加载数据源和nacos顺序的问题。有兴趣可以看下源码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

追逐路上的小人物

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值