摘要:
##1.Dubbo的基本架构 节点角色说明: | 节点 | 角色说明 | | | | | Provider | 暴露服务的服务提供方。 | | Consumer | 调用远程服务的服务消费方。 | | Registry | 服务注册与发现的注册中心。 | | Monitor | 统计服务的调用次数和 阅读全文
摘要:
#统一网关gateway 1.网关功能 网关功能: 身份认证和权限校验 服务路由、负载均衡请求限流 ##2.搭建网关 ###2.1创建新的module, 引入SpringCloudGateway的依赖和nacos的服务发现依赖: <!-- 网关gateway依赖--> <dependency> <g 阅读全文
摘要:
##1.首先创建一个module,命名为feign-api,然后引入feign的starter依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign 阅读全文
摘要:
#feign性能优化 连接池配置,feign添加httpClient的支持 ##1.引入依赖 <!--httpClient的依赖 --> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-httpclient< 阅读全文
摘要:
http客户端feign RestTemplate方式调用存在的问题 先来看我们以前利用RestTemplate发起远程调用的代码:String url = "http://userservice/user/" + order.getUserld(); User user = restTemplat 阅读全文