SpringBoot启动报错: Failed to configure a DataSource: url attribute is not specified and no embedded

 问题描述:

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

原因是(我的情况):

项目中引入了外部jar包,然后在pom文件中,增加jar包路径的指引,应该是因为单独配置了jar包路径,然后springboot默认配置文件全走路径指引了,所以在pom文件中在增加对配置文件的路径指引就可以

<resource>
	            <directory>lib</directory>
	            <targetPath>BOOT-INF/lib/</targetPath>
	            <includes>
	                <include>**/*.jar</include>
	            </includes>
	        </resource>
	        <resource>
	            <directory>src/main/resources</directory>
	            <targetPath>BOOT-INF/classes/</targetPath>
	        </resource>

这是我配置jar包的路径.

解决方法就是如下配置:

pom文件中增加对配置文件的路径指引

<resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.yml</include>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.yml</include>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>

 

这个问题只在本地运行时出现了,因为线上部署的时候是吧配置文件放在jar包同级目录了,然后就不会出现找不到配置文件的问题.原因可以搜索一下<springboot的配置文件加载优先级>

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值