springcloud微服务实战 学习笔记三 服务消费者

第一种方式LoadBalancerClient

  • 依赖

          
              org.springframework.boot
              spring-boot-starter-parent
              1.5.4.RELEASE
               
          
          
              UTF-8
              UTF-8
              1.8
          
    
          
              
                  org.springframework.cloud
                  spring-cloud-starter-eureka-server
              
              
                  org.springframework.boot
                  spring-boot-starter-web
              
          
    
          
              
                  
                      org.springframework.cloud
                      spring-cloud-dependencies
                      Dalston.SR1
                      pom
                      import
                  
              
          
    
          
              
                  
                      org.springframework.boot
                      spring-boot-maven-plugin
                  
              
          
    
  • 配置文件

      spring.application.name=eureka-consumer
      server.port=3333
      #服务注册中心
      eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/
    
  • application

      @EnableDiscoveryClient
      @SpringBootApplication
      public class Application {
      
          @Bean
          public RestTemplate restTemplate() {
              return new RestTemplate();
          }
      
          public static void main(String[] args) {
              new SpringApplicationBuilder(Application.class).web(true).run(args);
          }
      }
    
  • controller

      @RestController
      public class DemoController {
          Logger logger = LoggerFactory.getLogger(this.getClass());
          @Autowired
          LoadBalancerClient loadBalancerClient;
          @Autowired
          RestTemplate restTemplate;
          @GetMapping("/hello")
          public String hello(){
              ServiceInstance serviceInstance = loadBalancerClient.choose("eureka-client");
              logger.info("host:"+serviceInstance.getHost()+"---port:"+serviceInstance.getPort()+"---uri"+serviceInstance.getUri());
              String url = "http://"+serviceInstance.getHost()+":"+serviceInstance.getPort()+"/hello";
              String forObject = restTemplate.getForObject(url, String.class);
      
              return forObject;
          }
      
      }
    

第二种方式Ribbon

  • 依赖
    在一种方式下添加依赖

              
                  org.springframework.cloud
                  spring-cloud-starter-ribbon
              
    

配置文件修改端口号即可
修改Application.java,在RestTemplate上添加注解

    @Bean
    @LoadBalanced
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }

controller修改为

    @GetMapping("/hello2")
    public String hello2(){
        return restTemplate.getForObject("http://eureka-client/hello",String.class);
    }

第三种方式Feign

  • 依赖
    在第一种方式下添加依赖

      
          org.springframework.cloud
          spring-cloud-starter-feign
      
    

配置文件修改端口号即可

Application.java添加注解@EnableFeignClients支持Feign客户端

    @EnableFeignClients
    @EnableDiscoveryClient
    @SpringBootApplication
    public class Application {
    
        public static void main(String[] args) {
            new SpringApplicationBuilder(Application.class).web(true).run(args);
        }
    }

创建一个接口
@FeignClient("eureka-client")设置使用的服务名称

    @FeignClient("eureka-client")
    public interface DemoService {
    
        @GetMapping("/hello")
        String hello();
    }

controller

    @RestController
    public class DemoController {
    
        Logger logger = LoggerFactory.getLogger(this.getClass());
        @Autowired
        DemoService demoService;
        @GetMapping("/hello")
        public String hello(){
    
            return demoService.hello();
        }
    }

三种方式可以混合使用,第二种方式因为将RestTemplate对象添加了注解,所以第一种方式就不能直接使用了,只能利用其它方式发送http请求获取数据。

你可能感兴趣的:(springcloud微服务实战 学习笔记三 服务消费者)