Spring-cloud:eureka: Ribbon Load Balancer Configuration (i)

Source: Internet
Author: User

Spring-cloud:eureka: Ribbon Load Balancer Configuration (i)

For example, I have:

One Eureka service: 8761

Two User service: 7900/7901 ports

One movie service: 8010

1. After starting the Eureka service

2. A colleague initiates two services for user

3. Start the movie service

Eureka service startup file join:

@EnableEurekaServer

User/movie Server startup file join

@EnableEurekaClient

The User Service provides the interface:
Http://spring-boot-user:7900/simple/1

Http://spring-boot-user:7901/simple/1

@RestControllerpublic class Usercontroller {@Autowiredprivate userrepository userrepository; @GetMapping ("/simple/{ ID} ") public User FindByID (@PathVariable Long ID) {return userrepository.findone (ID);}}

Movie service startup file join:

@Bean @loadbalancedpublic resttemplate resttemplate () {return new resttemplate ();

Movie service file Moviecontroller.java call User Service

@RestControllerpublic class Moviecontroller {@Autowiredprivate resttemplate resttemplate; @GetMapping ("/movie/{id}") Public User FindByID (@PathVariable Long id) {//http://localhost:7900/simple/return resttemplate.getforobject ("http:/ /spring-boot-user/simple/"+ ID, user.class);}}

http://spring-boot-user/simple/

Spring-cloud:eureka: Ribbon Load Balancer Configuration (i)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.