码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-07-22 18:33:06      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:err   spring   OWIN   determine   from   rmi   toc   figure   依赖   

报错相关信息:

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

标签:err   spring   OWIN   determine   from   rmi   toc   figure   依赖   

原文地址:https://www.cnblogs.com/eric-fang/p/11227113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!