码迷,mamicode.com
首页 > 编程语言 > 详细

在IDEA上使用springcloud构建多节点的服务提供者负载均衡

时间:2018-05-22 10:45:13      阅读:497      评论:0      收藏:0      [点我收藏+]

标签:str   http   res   tco   first   his   pre   负载均衡   ram   

负载均衡(结合《在IDEA上使用springcloud构建单节点的服务提供者》)

以上面spring-cloud-producer为例子修改,将其中的controller改动如下:

@RestController
public class HelloController {
    
    @RequestMapping("/hello")
    public String index(@RequestParam String name) {
        return "hello "+name+",this is producer 2  send first messge";
    }
}

在配置文件中改动端口:

spring.application.name=spring-cloud-producer
server.port=9003
eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

两个服务提供者

打包启动后,在eureka就会发现两个服务提供者注册到一个注册中心(eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/),消费者调用提供者时实现均衡调用(自动轮询)

 

在IDEA上使用springcloud构建多节点的服务提供者负载均衡

标签:str   http   res   tco   first   his   pre   负载均衡   ram   

原文地址:https://www.cnblogs.com/lu51211314/p/9070549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!