【异常】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 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


  com.baomidou
  dynamic-datasource-spring-boot-starter
  ${version}


spring-boot3 使用以下依赖


  com.baomidou
  dynamic-datasource-spring-boot3-starter
  ${version}


 

你可能感兴趣的:(问题异常,数据库)