springboot运行zuul时提示counterFactory could not be registered

遇到的问题

在springboot下配置好zuul的依赖后,运行提示错误

Description:

The bean 'counterFactory', defined in class path resource [org/springframework/cloud/netflix/zuul/ZuulServerAutoConfiguration$ZuulCounterFactoryConfiguration.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/cloud/netflix/zuul/ZuulServerAutoConfiguration$ZuulMetricsConfiguration.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 2.1.0版本不兼容

解决方法

更换springboot版本为2.0.5后可以正常运行

你可能感兴趣的:(学习笔记)