大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍Spring Cloud EureKa Ribbon中服务注册发现与调用的示例分析,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名与空间、网站空间、营销软件、网站建设、五大连池网站维护、网站推广。
概述
用一个简单的例子演示Spring Cloud中EureKa和Ribbon的基本用法。
版本和环境
IDEA
Spring Boot 1.5.·0
JDK 1.8
Maven 3
构建eureka server
在Spring Cloud,可以使用eureka来管理微服务,微服务可以注册到eureka中。
首先可以用IDEA的Spring Initialzr
来创建eureka server注册中心。
修改application.properties文件,添加如下内容
spring.application.name=eureka-server eureka.instance.hostname=localhost eureka.client.register-with-eureka=false eureka.client.fetch-registry=false server.port=8881
在Spring Boot为我们生成的启动类ServerApplication
中加入@EnableEurekaServer
注解
package com.springcloud.eureka; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @EnableEurekaServer @SpringBootApplication public class ServerApplication { public static void main(String[] args) { SpringApplication.run(ServerApplication.class, args); } }
在浏览器中输入http://localhost:8881/
可以看到如下界面:
可以看到暂时还没有服务注册上来。到此,一个简单的微服务注册中心就构建完了。
编写微服务userservice
接下来用rest构建一个微服务接口,并注册到注册中心上去。依然使用Spring Initialzr
来构建一个新的工程。使用方式跟上面的一样。
注意这次要勾选Eureka Discovery
组件。而不是Eureka Server
。
修改application.properties文件,添加如下内容:
spring.application.name=user server.port=8882 eureka.client.service-url.defaultZone=http://localhost:8881/eureka/
在Spring Boot
为我们生成的UserApplication
类中使用@EnableDiscoveryClient
注解。
package com.springcloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @EnableDiscoveryClient @SpringBootApplication public class UserApplication { public static void main(String[] args) { SpringApplication.run(UserApplication.class, args); } }
创建一个rest full的微服务接口。
package com.springcloud; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class UserController { @GetMapping("/getUser") public String getUser() { return "I am user list."; } }
运行UserApplication后,再次访问http://localhost:8881/
会发现user这个服务已经注册上来了。
编写微服务order
接下来,我们再构建一个订单的微服务,并访问user这个微服务中的接口。
依然使用Spring Initialzr
来构建一个新工程。user这个微服务是可以部署到多台机器上的。客户端在访问这个服务的时候,请求可以路由到任何一台部署了user服务的机器。因此客户端需要使用一个路由算法来调度user这个服务。在Spring Cloud中,可以使用Ribbon组件来做客户端路由。Ribbon内部会去服务注册中心获取服务列表的,以便调用对应的服务。
这次除了勾选Eureka Discovery
组件。还需要勾选Ribbon
。
修改application.properties文件,添加如下内容:
spring.application.name=order server.port=8883 eureka.client.service-url.defaultZone=http://localhost:8881/eureka/
在Spring Boot
为我们生成的OrderApplication
类中增加如下配置。
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.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.web.client.RestTemplate; @EnableDiscoveryClient @SpringBootApplication public class OrderApplication { @Bean @LoadBalanced RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { SpringApplication.run(OrderApplication.class, args); } }
由于使用了Ribbon,这里需要使用@LoadBalanced
注解。
编写OrderController
。
package com.springboot; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController public class OrderController { @Autowired private RestTemplate restTemplate; @GetMapping("/getOrderUser") public String getOrderUser() { return restTemplate.getForEntity("http://user/getUser",String.class).getBody(); } }
运行OrderApplication
后,访问http://localhost:8881/
会发现order这个服务也被注册到注册中心了。
接下来我们访问OrderController
中的getOrderUser
方法,触发调用UserController
的getUser
方法。
在浏览器中输入:http://localhost:8883/getOrderUser
可以看到返回了:I am user list.
以上是“Spring Cloud EureKa Ribbon中服务注册发现与调用的示例分析”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!