zoukankan      html  css  js  c++  java
  • ShardingJDBC报错修复The bean 'dataSource', defined in class path resource [org/apache/shardingsphere/shardingjdbc/spring/boot/SpringBootConfiguration.class], could not be registered.

    报错信息

    这个意思是SpringBoot中已经有一个名称相同的Bean,并且不允许重写这个Bean

    ***************************
    APPLICATION FAILED TO START
    ***************************
    
    Description:
    
    The bean 'dataSource', defined in class path resource [org/apache/shardingsphere/shardingjdbc/spring/boot/SpringBootConfiguration.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
    

    解决方法

    application.properties中添加如下配置:允许重写重复的Bean并覆盖掉上一个Bean

    spring.main.allow-bean-definition-overriding=true
    
  • 相关阅读:
    Asp:Cookies应用指南
    asp:cookies的属性
    数据库压缩
    asp之servervariables全部显示
    sql语句操作表
    asp之FSO大全
    SQL语句
    vbscript语句
    asp之vbscript函数
    IDEA 2017web项目的创建
  • 原文地址:https://www.cnblogs.com/smallwolf/p/15744498.html
Copyright © 2011-2022 走看看