概述
在Spring Cloud EureKa Ribbon 服務註冊-發現-調用一文中簡單的介紹了在Spring Cloud中如何使用EureKa和Ribbon。文章中使用了RestTemplate去訪問其他的restful微服務接口。其實在Spring Cloud還可以使用Feign來訪問其他的restful微服務接口。使用起來更加的簡潔明了。
集成Feign
修改一下Spring Cloud EureKa Ribbon 服務註冊-發現-調用中order service的pom配置,把Fegin引入進來即可。
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId></dependency>
修改OrderApplication類,刪除如下代碼:
@Bean @LoadBalanced RestTemplate restTemplate() { return new RestTemplate(); }並加上@EnableFeignClients註解。完整代碼如下:
package com.springboot;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;@EnableDiscoveryClient@EnableFeignClients@SpringBootApplicationpublic class OrderApplication { public static void main(String[] args) { SpringApplication.run(OrderApplication.class, args); }}新增接口UserService,並使用@FeignClient註解。
package com.springboot;import org.springframework.cloud.netflix.feign.FeignClient;import org.springframework.web.bind.annotation.GetMapping;@FeignClient(name="user")public interface UserService { @GetMapping(value="/getUser") String getUser();}這裡的@FeignClient(name="user")中的name=user表示要訪問user這個微服務。由於order這個微服務已經集成了Eureka和Ribbon。那麼使用@FeignClient(name="user")訪問user微服務的時候,已經自動支持客戶端路由了。並且會從註冊中心中找到user這個微服務。
修改OrderController,注入UserService。
package com.springboot;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class OrderController { @Autowired private UserService userService; @GetMapping("/getOrderUser") public String getOrderUser() { return userService.getUser(); }}這樣就無需使用
restTemplate.getForEntity("http://user/getUser",String.class).getBody();來調用user服務中的getUser接口了。而是直接使用userService.getUser()就可以了。
啟動註冊中心以及user和order這兩個微服務。使用http://localhost:8883/getOrderUser
訪問一下。是可以返回
I am user list.
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。