Spring|Eureka-实现微服务的调用

1、Eureka的注册中心 Maven依赖:

4.0.0org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE com.example euraka-server 0.0.1-SNAPSHOT euraka-server Demo project for Spring Boot1.8 Greenwich.SR1 org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin

启动类:
//开启Eureka注册中心 @EnableEurekaServer @SpringBootApplication public class EurakaServerApplication {public static void main(String[] args) { SpringApplication.run(EurakaServerApplication.class, args); }}

【Spring|Eureka-实现微服务的调用】配置信息:
server.port=8761eureka.instance.hostname=127.0.0.1 eureka.client.register-with-eureka=false eureka.client.fetch-registry=false eureka.client.service-url.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/eureka.server.enable-self-preservation=false eureka.server.eviction-interval-timer-in-ms=5000

这里我们Eureka注册中心配置的地址时是: http://127.0.0.1:8761/eureka

2.服务提供者 Maven依赖:
4.0.0org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE com.example eureka-client 0.0.1-SNAPSHOT eureka-client Demo project for Spring Boot1.8 Greenwich.SR1 org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin

启动类:
@EnableEurekaClient @SpringBootApplication public class EurekaClientApplication {public static void main(String[] args) { SpringApplication.run(EurekaClientApplication.class, args); }}

配置文件:
包含了注册的服务名称和注册中心的地址
server.port=8762 spring.application.name=eureka-client1eureka.client.service-url.defaultZone=http://127.0.0.1:8761/eureka/ # 拉取服务注册信息间隔(缺省为30s) eureka.client.registry-fetch-interval-seconds: 10 # 关闭健康检查 eureka.client.healthcheck.enabled=false # 心跳时间,即服务续约间隔时间(缺省为30s) eureka.instance.lease-renewal-interval-in-seconds=5 # 发呆时间,即服务续约到期时间(缺省为90s) eureka.instance.lease-expiration-duration-in-seconds=15

这里我们的服务名称是通过spring.application.name来配置的,也就是说服务名称是eureka-client1
编写简单的服务:
@RestController public class HelloController {//restful api方式 @GetMapping("/hello/{name}") public String index(@PathVariable String name){ return "hello!" + name; }}

运行程序:
通过浏览器访问http://127.0.0.1:8762/hello/yang:
Spring|Eureka-实现微服务的调用
文章图片

说明服务正常访问

通过浏览器访问http://127.0.0.1:8761/,查看Eureka注册中心:
Spring|Eureka-实现微服务的调用
文章图片

在Eureka注册服务中服务提供者eureka-client1已经成功注册上了。

3.使用RestTemplate实现服务消费 Maven配置文件:
4.0.0org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE com.example demo 0.0.1-SNAPSHOT demo Demo project for Spring Boot1.8 Greenwich.SR1 org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin

启动类:
@SpringBootApplication //开启Eureka客户端 @EnableEurekaClient public class DemoApplication {public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); }}

配置文件:
包含Eureka注册服务名称和Eureka注册中心地址.
server.port=8764spring.application.name=eureka-consumer1 #Eureka的注册中心 eureka.client.serviceUrl.defaultZone=http://127.0.0.1:8761/eureka/

编写服务
@Controller /*加载RestTemplate的配置*/ @Configuration public class TestController {@Bean //为RestTemplate开启客户端的负载均衡 @LoadBalanced public RestTemplate getRestTemplate() { return new RestTemplate(); }@GetMapping("/usertest/{name}") @ResponseBody public String router(@PathVariable String name) { RestTemplate tpl = getRestTemplate(); //到注册中心找服务并调用服务,eureka-client1就是服务提供者在注册中心的名称 String result = tpl.getForObject("http://eureka-client1/hello/{name}", String.class,name); return result; }}

启动测试
http://127.0.0.1:8764/usertest/yang
Spring|Eureka-实现微服务的调用
文章图片

    推荐阅读