spring cloud 使用feign服务间调用

一、Feign简介
Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。
简而言之:
Feign 采用的是基于接口的注解
Feign 整合了ribbon
二、准备工作
继续用上一节的工程, 启动eureka-server,端口为8761; 启动service-hi 两次,端口分别为8762 、8773.
三、创建一个feign的服务
新建一个spring-boot工程,取名为serice-feign,在它的pom文件引入Feign的起步依赖spring-cloud-starter-feign、Eureka的起步依赖spring-cloud-starter-eureka、Web的起步依赖spring-boot-starter-web,代码如下:


4.0.0

com.forezp
service-feign
0.0.1-SNAPSHOT
jar

service-feign
Demo project for Spring Boot


    org.springframework.boot
    spring-boot-starter-parent
    1.5.2.RELEASE
     



    UTF-8
    UTF-8
    1.8




    org.springframework.cloud
    spring-cloud-starter-eureka
    1.1.0.RELEASE


    org.springframework.cloud
    spring-cloud-starter-feign
    1.1.0.RELEASE


    org.springframework.boot
    spring-boot-starter-web
    1.5.2.RELEASE



    org.springframework.boot
    spring-boot-starter-test
    1.5.2.RELEASE
    test

org.springframework.cloud spring-cloud-dependencies Brixton.SR5 pom import org.springframework.boot spring-boot-maven-plugin

    
        spring-milestones
        Spring Milestones
        https://repo.spring.io/milestone
        
            false
        
    

在工程的配置文件application.yml文件,指定程序名为service-feign,端口号为8765,服务注册地址为http://localhost:8761/eureka/ ,代码如下:

#服务提供者 (eureka client)
server.port: 8765
spring.application.name: service-feign
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/

在程序的启动类ServiceFeignApplication ,加上@EnableFeignClients注解开启Feign的功能:
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class ServiceFeignApplication {

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

}

定义一个feign接口,通过@ FeignClient(“服务名”),来指定调用哪个服务。比如在代码中调用了service-hi服务的“/hi”接口,代码如下:

注意:此处的接口路径,接受参数形式需要与被调用的接口完全一致
@FeignClient(value = “service-hi”)
public interface SchedualServiceHi {
@RequestMapping(value = “/hi”,method = RequestMethod.GET)
String sayHiFromClientOne(@RequestParam(value = “name”) String name);
}

在Web层的controller层,对外暴露一个”/hi”的API接口,通过上面定义的Feign客户端SchedualServiceHi 来消费服务。代码如下:
@RestController
public class HiController {

@Autowired
SchedualServiceHi schedualServiceHi;
@RequestMapping(value = "/hi",method = RequestMethod.GET)
public String sayHi(@RequestParam String name){
    return schedualServiceHi.sayHiFromClientOne(name);
}

}

启动程序,多次访问http://localhost:8765/hi?name=forezp,浏览器交替显示:

hi forezp,i am from port:8762
hi forezp,i am from port:8763

Feign 消费服务
使用关键
1.@FeignClient(name = “service-hi”) 在你要调用的类里面通过FeignClient注解标志 service-hi 是你需要调用的服务名称
2.@RequestMapping(name = “/hi”,method = RequestMethod.GET) 被被调用服务的路径。

你可能感兴趣的:(cloud,feign,微服务间服务调用,springcloud,feign)