记录一下报错

在尝试使用MybatisPlus进行数据库操作时,遇到了应用启动失败的问题。错误信息显示缺少DataSource的url配置,并提示可能需要在类路径下配置数据库驱动。经过排查,发现错误并非源于mapper的xml文件配置,而是由于application.yml文件放置位置不正确,应位于resource目录下而不是mapper包内。解决此问题需要调整配置文件的位置,并确保正确配置数据库连接信息。
摘要由CSDN通过智能技术生成

在进行mybatisplus实现自动生成代码操作数据库时,发现报以下错误:

 java.lang.Object.wait(Native Method)
 java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:143)
 com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:40)
2021-04-29 18:40:26.192  INFO 31148 --- [           main] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-04-29 18:40:26.197 ERROR 31148 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

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 (no profiles are currently active).

下面是我怀疑出问题的地方
在这里插入图片描述
看到报错信息,还以为是url路径写错了,就是application.yml中关于mapper的xml文件
在这里插入图片描述
但是检查之后才发现不是上面的问题,而是我的application.yml写到了mapper包下,其实应该是在resource目录下在这里插入图片描述
SpringBoot使用了一个全局的配置文件application.properties,放在src/main/resources目录下或者类路径的/config下,SpringBoot的全局配置文件的作用是对一些默认配置的配置值进行修改
自己也可以使用自定义配置文件(test.properties),路径也同样放在src/main/resources下面
在新建的Bean类上,需要添加@Configuration和@PropertySource(“classpath:test.properties”)后才可以读取

配置文件的优先级

application.properties和application.yml文件可以放在一个四个位置:

  1. 外置,在相对于应用程序运行目录的/config子目录里
  2. 外置,在应用程序运行的目录里
  3. 内置,在config包内
  4. 内置,在Classpath根目录

也就是说,src/main/resources/config下application.properties覆盖src/main/resources下application.properties中相同的属性
此外,如果你在相同优先级位置同时有application.properties和application.yml,那么application.yml里面的属性就会覆盖application.properties里的属性。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值