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

  • 相关阅读:
    ElasticSearch已经配置好ik分词和mmseg分词(转)
    Java:Cookie实现记住用户名、密码
    (转)10大H5前端框架
    msysGit在GitHub代码托管
    mongodb 语句和SQL语句对应(SQL to Aggregation Mapping Chart)
    centos 7 安装redis
    mac下idea卡顿问题解决
    在linux系统中,使用tomcat的shutdown.sh脚本停止应用,但是进程还在的解决办法
    centOS 7.4 安装配置jdk1.8
    CentOS6 在线安装PostgreSQL10
  • 原文地址:https://www.cnblogs.com/maohuidong/p/9881159.html
Copyright © 2011-2022 走看看