<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency>
(2)編寫配置文件。在配置文件中添加Eureka服務實例的端口號、服務端地址等信息,如文件4-8所示。
server: port: 7900 # 指定該Eureka實例的端口號 eureka: instance: prefer-ip-address: true # 是否顯示主機的IP #instance-id: ${spring.cloud.client.ipAddress}:${server.port} #將Status中的顯示內容也以「IP:端口號」的形式顯示 client: service-url: defaultZone: http://localhost:8761/eureka/ # 指定Eureka服務端地址 spring: application: name: xcservice-eureka-order # 指定應用名稱
(3)建立訂單實體類。
package com.xc.xcserviceeurekaorder.po; public class Order { private String id; private Double price; private String receiverName; private String receiverAddress; private String receiverPhone; ... }
(4)建立訂單控制器類。
package com.xc.xcserviceeurekaorder.controller; import com.xc.xcserviceeurekaorder.po.Order; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; @RestController public class OrderController { /** * 經過id查詢訂單 */ @GetMapping("/order/{id}") public String findOrderById(@PathVariable String id) { Order order = new Order(); order.setId("123"); order.setPrice(23.5); order.setReceiverAddress("beijing"); order.setReceiverName("xiaoqiang"); order.setReceiverPhone("13422343311"); return order.toString(); } }
(5)在引導類中添加@EnableEurekaClient註解。
@Bean public RestTemplate restTemplate() { return new RestTemplate(); }
在上述代碼中,RestTemplate是Spring提供的用於訪問Rest服務的客戶端實例,它提供了多種便捷訪問遠程Http服務的方法,可以大大提升客戶端的編寫效率。java
package com.xc.xcserviceeurekauser.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController public class UserController { @Autowired private RestTemplate restTemplate; /** * http://localhost:8000/findOrdersByUser/1 * 查找與用戶相關的訂單 */ @GetMapping("/findOrdersByUser/{id}") public String findOrdersByUser(@PathVariable String id) { // 假設用戶只有一個訂單,而且訂單id爲123 int oid = 123; return restTemplate.getForObject("http://localhost:7900/order/" + oid, String.class); } }
在上述代碼中,當用戶查詢訂單時,首先會經過用戶id查詢與用戶相關的全部訂單(因爲這裏主要是演示服務的調用,因此省略了查詢方法,而且自定義了一個oid爲123的訂單,來模擬查詢出的結果)。而後經過restTemplate對象的getForObject()方法調用了訂單服務中的查詢訂單方法來查詢訂單id爲123的訂單信息。web
Order{id='123', price=23.5, receiverName='xiaoqiang', receiverAddress='beijing', receiverPhone='13422343311'}