【异常】SpringBoot3.2.0 Description: Failed to configure a DataSource: ‘url‘ att

2023-12-13 04:17:57

mybatisPlus 多数据源导致

异常

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).

解决

spring-boot 1.5.x 2.x.x

<dependency>
? <groupId>com.baomidou</groupId>
? <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
? <version>${version}</version>
</dependency>


spring-boot3 使用以下依赖

<dependency>
? <groupId>com.baomidou</groupId>
? <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
? <version>${version}</version>
</dependency>


?

文章来源:https://blog.csdn.net/G971005287W/article/details/134877293
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。