Spring Cloud(四):服务消费(Feign)

本文介绍Feign作为声明式的伪Http客户端,支持Feign和JAX-RS注解,并集成了Ribbon和Eureka实现负载均衡。文章详细展示了如何在Spring Cloud中使用Feign进行服务间调用。
摘要由CSDN通过智能技术生成

一、Feign简介

   Feign是一个声明式的伪Http客户端。具有可插拔的注解支持,包括Feign注解和JAX-RS注解。它在Netflix Feign的基础上扩展了对Spring MVC的注解支持。Feign支持可插拔的编码器和解码器,默认集成Ribbon,和Eureka结合,默认实现负载均衡。

二、创建Feign服务

pom文件依赖如下:

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

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

application.properties配置:

eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
spring.application.name=hello-service-feign
server.port=8763

在启动类添加注解,开启feign功能,如下:

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class HelloServiceFeignApplication {

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

定义一个feign接口,通过@ FeignClient(“服务名”),来指定调用哪个服务。

@FeignClient(value="hello-service")
public interface HelloServiceFeign {
    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    String sayHiFromClientOne(@RequestParam(value = "name") String name);
}

编写controller如下:

@RestController
public class HelloController {
    @Autowired
    HelloServiceFeign helloServiceFeign;
    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    public String sayHello(@RequestParam String name){
        return helloServiceFeign.sayHiFromClientOne(name);
    }
}

启动程序,访问http://localhost:8763/hi?name=zhao 出现以下:

hi zhao,i am from port:8082

证明已经完成。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值