当前位置:   article > 正文

org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is ja

org.springframework.web.util.nestedservletexception: handler dispatch failed

具体报错:

org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.AbstractMethodError: Receiver class org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient does not define or inherit an implementation of the resolved method 'abstract org.springframework.cloud.client.ServiceInstance choose(java.lang.String, org.springframework.cloud.client.loadbalancer.Request)' of interface org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser.

解决办法:
引入了loadbalancer负载均衡,需要将ribbon排除掉,才能使loadbalancer生效。

  1. <dependency>
  2. <groupId>org.springframework.cloud</groupId>
  3. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  4. <!--问题:具体见error文件-->
  5. <exclusions>
  6. <exclusion>
  7. <groupId>org.springframework.cloud</groupId>
  8. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  9. </exclusion>
  10. </exclusions>
  11. </dependency>

        在使用 Spring Cloud 中的负载均衡器(LoadBalancer)时,有时需要将 Ribbon 排除(exclude)掉才能使负载均衡器生效。这是因为在较新的 Spring Cloud 版本中,默认情况下会集成 Ribbon 负载均衡器,而排除 Ribbon 可以让负载均衡器使用其他实现。

        在 Spring Cloud 中,负载均衡器是通过 `@LoadBalanced` 注解实现的,默认情况下,它会使用 Ribbon 作为负载均衡的实现。Ribbon 是一个基于客户端的负载均衡器,它通过在客户端上选择合适的服务实例来实现负载均衡。然而,如果您不想使用 Ribbon(比如我想用nacos)或者您希望使用其他的负载均衡器实现,您可以将 Ribbon 排除掉。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/672192
推荐阅读
相关标签
  

闽ICP备14008679号