我是靠谱客的博主 儒雅长颈鹿,最近开发中收集的这篇文章主要介绍SpringBoot启动报错项目场景:问题描述:原因分析:解决方案:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

项目场景:

SpringBoot,启动类启动BUG


问题描述:

创建启动类,启动报错了

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

原因分析:

没有配置数据库,启动时候,会自动找数据库配置


解决方案:

1、添加上数据库配置
2、在启动类添加属性,默认不去加载数据库配置 (exclude = DataSourceAutoConfiguration.class)

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
public class OSSApplication {
    public static void main(String[] args) {
        SpringApplication.run(OSSApplication.class,args);
    }
}

最后

以上就是儒雅长颈鹿为你收集整理的SpringBoot启动报错项目场景:问题描述:原因分析:解决方案:的全部内容,希望文章能够帮你解决SpringBoot启动报错项目场景:问题描述:原因分析:解决方案:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部