The bean '****', defined in class path resource [quartz-config.xml], could not be registered. A bean with that name has already been defined in file****

  出现类似错误,只需要在配置文件添加如下配置,即可解决

  .properties格式

spring.main.allow-bean-definition-overriding=true

  .yml格式

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

  

原文地址:https://www.cnblogs.com/personblog/p/14073763.html