SpringBoot项目在启动时报出下面的错误:
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 (no profiles are currently active).
说明:
未能配置DataSource:未指定“url”特性,也无法配置任何嵌入的数据源。
原因:无法确定合适的驱动程序类别
操作:
考虑以下内容:
如果您想要一个嵌入式数据库(H2、HSQL或Derby),请将其放在类路径中。
如果您有要从特定配置文件加载的数据库设置,则可能需要激活它(当前没有激活的配置文件)。
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
说明:如果是第二种情况,重点应该放在排查是否有配置数据源(datasource)相关的属性值,或者配置了属性值为什么没有生效。 比如使用Nacos配置中心时,datasource相关的属性是否生效了。