springcloud的Eureka服务间的调用实例
程序员文章站
2024-01-20 08:52:46
本节就来模拟多个服务之间的调用,看官请准备,好戏就在下方...
小编本文主要涉及模拟多个服务之间的调用
1 搭建订单服务工程
1. 创建一个order的maven子项目
2. 添加的pom内容如下:
注意删除子maven的pom中的relativePath,不然会出现很可怕的事情哦
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> </dependencies>
3.在resource下创建application.yaml,相关代码如下:
server: port: 7900 # 指定该Eureka的实例端口 eureka: instance: prefer-ip-address: true # 是否显示主机IP instance-id: ${spring.cloud.client.ipAddress}:${server.port} # 格式“IP:端口号” client: service-url: defaultZone: http://localhost:8761/eureka/ # 指定eureka的服务端地址 spring: application: name: microservice-eureka-order #指定应用的名称
4 创建订单实体类
package com.pixiu.po; import org.springframework.web.bind.annotation.Mapping; public class Order { private String id; private Double price; private String receiverName; private String receiverAddress; private String receiverPhone; /*
*1.生成get和set方法,这里理就省略不贴上来了
*2.生成toString (),同理
*/ }
5.创建订单控制类
package com.pixiu.controller; import com.pixiu.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 { // @Autowired // private Order order; @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("big Grill"); order.setReceiverPhone("123345678990"); return order.toString(); } }
6 在引导类(OrderEurekaApplication)上加上注解@EnableEurekaServer,具体代码就不展示了,前面创建客户工程中已经操作过了,流程一样
2 用户服务功能
1.这里需要就绪回顾到咱们的user客户端工程的项目里
2.在引导类中创建RestTemplate的spring的实例,为了读者方便这里就把代码重复贴出来
package com.pixiu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.context.annotation.Bean; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @SpringBootApplication @RestController @EnableEurekaClient public class UserEurekaApplication { @RequestMapping("/hello") public String home(){ return "hello world!!!"; } public static void main(String[] args) { SpringApplication.run(UserEurekaApplication.class,args); } /**
* RestTemplate的spring的实例
* @return
*/ @Bean public RestTemplate restTemplate(){ return new RestTemplate(); } }
3.创建用户控制类
package com.pixiu.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 RestTemplate restTemplate; /**
* 查找用户相关的订单
* @param id
* @return
*/ @GetMapping("/findOrderByUser/{id}") public String findOrderByUser(@PathVariable String id){ //假设只有有个id为“123”的订单 int oid =123; return this.restTemplate.getForObject("http://localhost:7900/order/"+oid,String.class); } }
3 启动服务应用,测试服务调用
1.分别启动服务注册中心,订单服务应用和用户服务应用此时Eureka信息页面的显示
2.通过浏览器访问地址http://localhost:8000/findOrderByUser/1,浏览器显示结果如下:
到这里已经完成Eureka的注册,服务以及服务之间调用
本文地址:https://blog.csdn.net/weixin_42949808/article/details/108018471
上一篇: 怎样处理vue-router懒加载时候第一次加载资源过多导致速度缓慢
下一篇: 伪静态规则
推荐阅读
-
spring cloud中微服务之间的调用以及eureka的自我保护机制详解
-
axis2客户端调用免费的webservice服务的实例之三axis2使用RPC方
-
spring cloud eureka微服务之间的调用详解
-
axis2客户端调用免费的webservice服务的实例之二纯手动调用免费
-
SpringCloud------聚合项目及Feign声明式服务调用以及调用时应注意的问题
-
Python调用服务接口的实例
-
springcloud的Eureka服务间的调用实例
-
跟我学SpringCloud | 第三篇:服务的提供与Feign调用
-
SpringCloud-微服务的注册与发现Eureka
-
SpringCloud(二):服务的注册与发现(Eureka)