zoukankan      html  css  js  c++  java
  • spring coud feign

    1. 依赖

    <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.4.RELEASE</version>
    </parent>

    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.version>1.8</java.version>
    </properties>

    <dependencies>
    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>

    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-feign</artifactId>
    </dependency>


    </dependencies>

    <dependencyManagement>
    <dependencies>
    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>Camden.SR7</version>
    <type>pom</type>
    <scope>import</scope>
    </dependency>

    </dependencies>
    </dependencyManagement>
    </project>

    2. 启动类

    @SpringBootApplication
    @EnableEurekaClient
    @EnableFeignClients
    public class FeignApplication {


    public static void main(String[] args) {
    SpringApplication.run(FeignApplication.class, args);
    }

    @Bean
    protected Logger.Level level(){
    return Logger.Level.FULL;
    }
    }

    3. feign

    @FeignClient(name="hello-service",fallback=fallbackHelloFeignClient.class)
    public interface HelloFeignClient {


    @RequestMapping(value="/hello")
    public String hello() throws InterruptedException;

    @Component
    static class fallbackHelloFeignClient implements HelloFeignClient{

    @Override
    public String hello() throws InterruptedException {
    return “error”;
    }

    }
    }

    4. 业务

    @RestController
    public class HelloFeignController {

    @Autowired
    private HelloFeignClient client;


    @GetMapping("/hello")
    public String hello() throws InterruptedException {
    return client.hello();
    }
    }

    5 配置

    server:
    port: 8095
    spring:
    application:
    name: feign-consumer
    eureka:
    client:
    serviceUrl:
    defaultZone: http://ym-eureka-server1:8759/eureka/
    instance:
    preferIpAddress: true
    ribbon:
    ConnectTimeout: 6000
    ReadTimeout: 6000
    hystrix:
    command:
    default:
    execution:
    isolation:
    thread:
    timeoutInMilliseconds: 15000
    feign:
    hystrix:
    enabled: true
    logging:
    level:
    com:
    ym: debug

  • 相关阅读:
    [官网]清华大学的开源镜像站点 配置方法
    Android MIFARE NFCA源码解析
    Delphi XE8 TStyleBook的使用
    【FireMonkey】StyleBook使用方法
    Delphi第三方组件安装DCU.PAS.DPK.BPL.ActiveX控件
    M1卡说明及使用proxmark3破解方法
    M1卡修改各区块控制位值和数据
    DICOMDIR
    ZentaoPMS 系统的优先级以及修改
    集成禅道和svn
  • 原文地址:https://www.cnblogs.com/maohuidong/p/9881159.html
Copyright © 2011-2022 走看看