当前位置:网站首页>Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could
Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could
2022-06-26 06:12:00 【Oh No 发量又少了】
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
配置数据源失败:未指定“url”属性,无法配置嵌入的数据源。
原因:未能确定合适的驱动程序级别
报错解决方案
1. @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
exclude,排除此类的AutoConfig,即禁止 SpringBoot 自动注入数据源配置
2. 配置数据源
- 首先导入pom中的依赖
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
- 在application.yml文件中配置连接数据库
spring:
datasource:
url: jdbc:mysql://localhost:3306/blogsys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username: root
password: qwer
driver-class-name: com.mysql.jdbc.Driver
边栏推荐
- Import / export function implementation
- Several promotion routines of data governance
- Vs2022 offline installation package download and activation
- Pychart cannot run designer Exe (this application failed to start because no Qt platform plugin could be I appears)
- SSH keygen specifies the path
- tf. nn. top_ k()
- "= =" difference from "equals"
- 工作积累——Web请求中使用ThreadLocal遇见的问题
- Logstash——Logstash向Email发送告警邮件
- Explore small program audio and video calls and interactive live broadcast from New Oriental live broadcast
猜你喜欢
随机推荐
跨域的五种解决方案
Install pyinstaller
在web页面播放rtsp流视频(webrtc)
如何设计好的技术方案
Pychart cannot run designer Exe (this application failed to start because no Qt platform plugin could be I appears)
数据治理工作的几种推进套路
MVC source code sharing
卷妹带你学jdbc---2天冲刺Day2
Tortoise and rabbit race example
302. 包含全部黑色像素的最小矩形 BFS
Household accounting procedures (First Edition)
Evolution history of qunar Bi platform construction
Redis底层数据结构
Vs2022 offline installation package download and activation
Library management system
Deeply uncover Ali (ant financial) technical interview process with preliminary preparation and learning direction
Playing RTSP streaming video on Web pages (webrtc)
The difference between overload method and override method
Redis multithreading and ACL
[intra group questions semester summary] some reference questions for beginners









