zoukankan      html  css  js  c++  java
  • SpringBoot启动报错Failed to determine a suitable driver class

    SpringBoot启动报错如下

    Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
    2019-05-06 21:27:18.275 ERROR 10968 --- [ 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).


    Process finished with exit code 1


    把这个依赖注释掉就好了

    原因

    应用没有使用到DataSource,但是在pom.xml里引入了mybatis-spring-boot-starter

    问题解决办法

    有两种:

    把mybatis-spring-boot-starter的依赖去掉,这样就不会触发spring boot相关的代码

    把spring boot自动初始化DataSource相关的代码禁止掉

    禁止的办法有两种:

    在启动类的@SpringBootApplication加上

    @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class, DataSourceTransactionManagerAutoConfiguration.class })

    在application.properties里配置:

    spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

            <div class="art_xg">
    

    您可能感兴趣的文章:

    原文地址:https://www.jb51.net/article/160814.htm
查看全文
  • 相关阅读:
    转:套接字
    转:Socket原理与编程基础
    转:rabbitmq——用户管理
    转:rabbitMQ 安装与管理
    转:window与linux互相拷贝文件
    转:Xming + PuTTY 在Windows下远程Linux主机使用图形界面的程序
    Rabbitmq集群
    VS2010 win7 64位安装后新建项目生成时错误:LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
    java连接sqlserver2008
    Java单体应用
  • 原文地址:https://www.cnblogs.com/jpfss/p/11242587.html
  • Copyright © 2011-2022 走看看