springboot项目启动报错 url' attribute is not specified and no embedded datasource could be configured

Posted eric-fang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目启动报错 url' attribute is not specified and no embedded datasource could be configured相关的知识,希望对你有一定的参考价值。

报错相关信息:

2019-07-22 17:12:48.971 ERROR 8312 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

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

  原因:maven父子聚合工程,pom父项目中如果添加了数据库驱动依赖的话,boot项目的autoconfig回去读取加载DataSource相关的配置,读取不到即报错。在一些新项目初始或者不需要db的项目(比如eureka)中,可配置boot的启动类:

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)

  排除DataSource的自动扫描装配。

以上是关于springboot项目启动报错 url' attribute is not specified and no embedded datasource could be configured的主要内容,如果未能解决你的问题,请参考以下文章

springboot启动报错 Failed to configure a DataSource: 'url' attribute is not specified and no emb

Springboot项目启动报错Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded d

项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段

springboot-elasticsearch项目启动报错:'elasticsearchTemplate' that could not be found

本地用tomcat启动springboot项目没有问题,但是在linux服务器下启动报错。

springboot rabbitMQ 启动报错