spring cloud Feign(声明式服务调用)

1、快速入门:

简介:Feign整合了Ribbon和Hystrix,除了提供这两者的强大功能之外,还提供了一种声明式的web服务客户端定义方式。

使用步骤:

1、引入依赖

2、在应用主类上添加@EnableFeignClients注解,如下:

package com.wuyonghu.feign;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;

@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class FeignApplication {

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

3、定义一个接口,使用@FeignClient注解来绑定服务:

package com.wuyonghu.feign.service;

import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
// 使用该注解,表示这里要使用哪个服务提供者
@FeignClient("wuyonghu-test-one")
public interface HelloService {
    // 要调用该服务提供者的哪个方法
    @RequestMapping("/hello")
    String hello();
}

4、在controller中调用service中的方法:

package com.wuyonghu.feign.controller;

import com.wuyonghu.feign.service.HelloService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ConsunerController {
    @Autowired
    HelloService helloService;


    @RequestMapping(value = "/feign-consumer", method = RequestMethod.GET)
    public String helloCustomer() {

        return helloService.hello();
    }
}

解释说明:1、在controller层中调用helloService的hello方法,这里的hellService因为是HelloServer的实现类,而HelloService使用了@FeignClient注解,所以会自动将该注解对应的名字的服务提供者注入到服务中,而因为该服务存在hello的方法,所以这里调用.hello()方法的时候,相当于就调用了名为 wuyonghu-test-one的服务提供者的hello()的方法。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值