美文网首页
SpringBoot项目运行报错:Failed to confi

SpringBoot项目运行报错:Failed to confi

作者: 指下光年 | 来源:发表于2022-04-03 17:37 被阅读0次

启动项目的时候报错:Failed to configure a DataSource: ‘url‘ attribute is not specified

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


Process finished with exit code 1
  • 情况一:配置文件没有激活
    解决办法:pom文件添加下面内容
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.yml</include>
                    <include>**/*.properties</include>
                </includes>
            </resource>
        </resources>
    </build>
  • 情况二:项目不需要数据库模块
    解决方案:在启动类的注解中添加(exclude = {DataSourceAutoConfiguration.class})
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class XXXApplication {
    public static void main(String[] args) {
        SpringApplication.run(XXXApplication.class, args);
    }
}

相关文章

网友评论

      本文标题:SpringBoot项目运行报错:Failed to confi

      本文链接:https://www.haomeiwen.com/subject/qgwfsrtx.html