【异常】SpringBoot3.2.0 Описание: Не удалось настроить источник данных: 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 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).

решать

пружинная загрузка 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>


 

おすすめ

転載: blog.csdn.net/G971005287W/article/details/134877293
おすすめ