超详细讲解springcloud commons公共抽象的用法-亚博电竞手机版

目录

  • spring cloud commons公共抽象
  • @enablediscoveryclient
  • 服务注册serviceregistry
  • resttemplate的负载均衡
  • resttemplate的失败重试

本期主角——spring cloud commons:公共抽象

spring cloud commons公共抽象

spring cloud将服务发现、负载均衡和断路器等通用模型封装在一个公共抽象中,可以被所有的spring cloud客户端使用,不依赖于具体的实现(例如服务发现就有eureka和consul等不同的实现),这些公共抽象位于spring cloud commons项目中。

@enablediscoveryclient

commons提供@enablediscoveryclient注释。这通过meta-inf/spring.factories查找discoveryclient接口的实现。discovery client的实现将在org.springframework.cloud.client.discovery.enablediscoveryclient键下的spring.factories中添加一个配置类。discoveryclient实现的示例是spring cloud netflix eureka,spring cloud consul发现和spring cloud zookeeper发现。

默认情况下,discoveryclient的实现将使用远程发现服务器自动注册本地spring boot服务器。可以通过在@enablediscoveryclient中设置autoregister=false来禁用此功能。

服务注册serviceregistry

commons现在提供了一个serviceregistry接口,它提供了诸如register(regi恰卡编程网stration)和deregister(registration)之类的方法,允许您提供定制的注册服务。registration是一个标记界面。

@configuration @enablediscoveryclient(autoregister=false) public class myconfiguration { private serviceregistry registry; public myconfiguration(serviceregistry registry) { this.registry = registry; } // called via some external process, such as an event or a custom actuator endpoint public void register() { registration registration = constructregistration(); this.registry.register(registration); } }

每个serviceregistry实现都有自己的registry实现。

resttemplate的负载均衡

创建resttemplate实例的时候,使用@loadbalanced注解可以将resttemplate自动配置为使用负载均衡的状态。@loadbalanced将使用ribbon为resttemplate执行负载均衡策略。

创建负载均衡的resttemplate不再能通过自动配置来创建,必须通过配置类创建,具体实例如下所示:

@configuration public class myconfiguration { @loadbalanced @bean resttemplate resttemplate(){ return new resttemplate(): } } public class myapplication { @autowired private resttemplate resttemplate ; public string getmyapplicationname() { //使用resttemplate访问my-application微服务的/name接口 string name = resttemplate.getfor0bject("http://my-application/name",string.class) ; return name; } }

uri需要使用服务名来指定需要访问应用服务,ribbon客户端将通过服务名从服务发现应用处获取具体的服务地址来创建一个完整的网络地址,以实现网络调用。

resttemplate的失败重试

负载均衡的resttemplate可以添加失败重试机制。默认情况下,失败重试机制是关闭的,启用方式是将spring retry添加到应用程序的类路径中。还可以设置

spring.cloud.loadbalancer.retry.enabled=false禁止类路径中spring retry的重试逻辑。

恰卡编程网果想要添加一个或者多个retrylistener到重试请求中,可以创建一个类型为loadbalancedretrylistenerfactory的bean,用来返回将要用于重试机制的retrylistener的列表,如下代码所示:

@configuration public class rrylistenerconfiguration { @bean loadbalancedretrylistenerfactory retrylistenerfactory( { return new loadbalancedretrylistenerfactoryo { @override public retrylistener[] createretrylisteners (string service) return new retrylistener[] {new retrylistener ( { @override //重试开始前的工作 public boolean open(retrycontext context,retrycallbackcallback){ return true; } //重试结束后的工作@override publichttp://www.cppcns.com throwable> void close(retrycontext context,retrycallbackcallback,throwable throwable){ } //重试出错后的工作@override publict,e extends throwable> void onerror(retrycontext context,retrycal1backcallback,throwable throwable){ } }}; }}; }}

其中,自定义配置类中定义了生成loadbalancedretrylistenerfactory实例的@bean方法,该工厂类的createretrylisteners方法会生成一个retrylistener实例,用于进行网络请求的重试。

到此这篇关于超详细讲解springcloud commons 公共抽象的用法的文章就介绍到这了,更多相关springcloud 公共抽象内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图