栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Spring Cloud ——OpenFeign

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Spring Cloud ——OpenFeign

介绍:

声明式服务调用与负载均衡组件

pom.xml
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
application.yml
spring:
  application:
    name: cloud-order-service
eureka:
  client:
    register-with-eureka: true
    fetch-registry: true
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
ribbon:
  #指的是建立连接所用时间,适用于网络正常情况下,两端连接的情况
  ReadTimeout: 5000
  #指的是建立连接后从服务器读取到可用资源的时间
  ConnectTimeout: 5000
logging:
  level:
    com.pxx.cloud.service.PaymentServiceFeign: debug
feign.client.config.default.loggerLevel: full

注:也可通过配置类的方式使用

@Configuration
public class FeignConfig {
    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.DEBUG;
    }
}
service
//接口加注解
@FeignClient("CLOUD-PAYMENT-SERVICE")
@Component
public interface PaymentServiceFeign {

    @GetMapping("/payment/get/{id}")
    public CommonResult getPaymentById(@PathVariable("id") long id);
}
controller
@RestController
@Slf4j
public class OrderFeignController {

    @Resource
    private PaymentServiceFeign paymentServiceFeign;

    @GetMapping("/consumer/payment/get/{id}")
    public CommonResult getPaymentById(@PathVariable("id") long id){
        return  paymentServiceFeign.getPaymentById(id);
    }
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/880850.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号