zoukankan      html  css  js  c++  java
  • The bean 'dataSource',could not be registered.A bean with that name has already been defined

    问题:

    往SpringCloud的注册中心里注册服务时启动SpringBoot项目抛出异常。项目启动报错。

    ***************************
    APPLICATION FAILED TO START
    ***************************
    Description:

    The bean 'dataSource', defined in BeanDefinition defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class] and overriding is disabled.

    Action:

    Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true

    原因:

    SpringBoot和SpringCloud的版本不兼容造成。

    解决方案:

    在配置文件application.yml中添加两行配置信息即可,配置如下:

    spring:main:allow-bean-definition-overriding: true

  • 相关阅读:
    app启动优化
    CountDownLatch妙用
    匿名内部类为什么有可能造成内存泄漏
    单例模式为什么有可能造成内存泄漏
    左移右移记不住怎么办
    说一说ThreadLocal
    对framework层的一些看法
    双重锁单例
    JMM总结
    关于lock前缀
  • 原文地址:https://www.cnblogs.com/lyb0103/p/14855714.html
Copyright © 2011-2022 走看看