zoukankan      html  css  js  c++  java
  • springboot报错Error creating bean with name 'dataSource' defined in class path resource

    报错信息如下:

    2020-04-02 15:25:15.549 WARN 4360 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class
    2020-04-02 15:25:15.549 INFO 4360 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
    2020-04-02 15:25:15.554 INFO 4360 --- [ main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
    解决方法一:

    在启动类上加上@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})

    package com.example.securitycore;

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;

    @EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
    @SpringBootApplication
    public class SecurityCoreApplication {

    public static void main(String[] args) {
    SpringApplication.run(SecurityCoreApplication.class, args);
    }

    }
    方法二

    在application.properties在添加配置

    spring.datasource.driver-class-name=com.mysql.jdbc.Driver
    spring.datasource.url=jdbc:mysql://localhost:3306/security_demo?characterEncoding=utf-8
    spring.datasource.data-username=root
    spring.datasource.data-password=root
    ————————————————
    版权声明:本文为CSDN博主「爱笑的女孩运气不会太差」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/qq_33439525/article/details/105271088

  • 相关阅读:
    jquery $.each遍历json数组方法
    JQuery插件编写
    创建JAVASCRIPT对象3种方法
    微信开发流程
    有关索引那点事
    获取数据库内所有的表和表内字段的信息
    asp.net MVC4 异步文件上传
    QT学习:01 工程文件详解
    QT学习:00 介绍
    Linux 系统编程 学习 总结
  • 原文地址:https://www.cnblogs.com/telwanggs/p/14794389.html
Copyright © 2011-2022 走看看