本文主要是介绍【异常】SpringBoot3.2.0 Description: Failed to configure a DataSource: ‘url‘ att,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 classAction: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>
这篇关于【异常】SpringBoot3.2.0 Description: Failed to configure a DataSource: ‘url‘ att的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!