码迷,mamicode.com
首页 > 其他好文 > 详细

Fegin的基本使用

时间:2019-07-28 17:29:08      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:map   开发   framework   val   artifact   ble   web   -o   over   

认识Fegin

Feign是简化Java HTTP客户端开发的工具(java-to-httpclient-binder),它的灵感
来自于Retrofit、JAXRS-2.0和WebSocket。Feign的初衷是降低统一绑定Denominator到
HTTP API的复杂度,不区分是否为restful。

1.添加依赖

 <dependency>
          <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
      </dependency>
      <dependency>        
          <groupId>org.springframework.cloud</groupId>            
          <artifactId>spring-cloud-starter-openfeign</artifactId>            
      </dependency>

 

2.需要Eureka

@SpringBootApplication
@EnableEurekaClient //eureka
@EnableDiscoveryClient //
@EnableFeignClients  //相互调用
public class QaApplication {

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

    
}

3.接口调用

 //调用其他模块
    @RequestMapping(value = "/label/{labelid}",method = RequestMethod.GET)
    public Result findLableById(@PathVariable String labelid) {
        Result result = labelClient.findById(labelid);
        return result;
    }

 

@FeignClient("tensquare-base")//服务名
public interface LabelClient {

    @RequestMapping(value = "/label/{id}", method = RequestMethod.GET)
    public Result findById(@PathVariable(value="id") String id) ;

}

 

Fegin的基本使用

标签:map   开发   framework   val   artifact   ble   web   -o   over   

原文地址:https://www.cnblogs.com/liushisaonian/p/11259511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!