Feign是Webservice服务的客户端,创建接口+注解就可完成,实现简单
- 客户端通过@EnableFeignClients开启Feign的支持功能
@SpringBootApplication @EnableEurekaClient @EnableFeignClients @RestController public class TestApplication { public static void main(String[] args) { SpringApplication.run(TestApplication.class, args); } } - 定义接口,通过@FeignClient("remote-service") 注解指定服务名来绑定服务,再使用SpringMVC的注解@RequestMapping来绑定具体该服务提供的REST接口 注:服务名不区分大小写
@FeignClient(name = "user-service") public interface UserService { @RequestMapping(value = "/service/getUserinfo") public Map<String, Object> getUserinfo(@RequestParam(value = "userid") String userid); } - 创建Controller,注入接口,即可使用
本文详细介绍Feign作为Webservice服务客户端的使用方法,通过简单的接口定义和注解即可完成微服务间的调用。文章包括如何开启Feign支持,定义接口绑定服务,以及在Controller中注入接口的具体实践。

3205

被折叠的 条评论
为什么被折叠?



