zoukankan      html  css  js  c++  java
  • spring cloud学习(二) 调用服务

    spring-cloud调用服务有两种方式,一种是Ribbon+RestTemplate, 另外一种是Feign。
    Ribbon是一个基于HTTP和TCP客户端的负载均衡器,其实feign也使用了ribbon, 只要使用@FeignClient时,ribbon就会自动使用。

    一、Ribbon

    1.1
    新建模块client-a
    pom文件

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <parent>
            <artifactId>spring-cloud</artifactId>
            <groupId>com.feng</groupId>
            <version>0.0.1</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>client-a</artifactId>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-ribbon</artifactId>
            </dependency>
        </dependencies>
    
    </project>
    

    新建bootstrap.yml

    server:
      port: 8910
    
    eureka:
      client:
        serviceUrl:
              defaultZone: http://localhost:8010/eureka/
    
    spring:
      application:
          name: client-a
    

    ClientApplication, 这里我们需要注册一个RestTemplate,并且使用@LoadBalanced开启负载功能

    /**
     * @author fengzp
     * @date 17/5/9
     * @email fengzp@gzyitop.com
     * @company 广州易站通计算机科技有限公司
     */
    @SpringBootApplication
    @EnableDiscoveryClient
    public class ClientApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(ClientApplication.class, args);
        }
    
        @Bean
        @LoadBalanced
        RestTemplate restTemplate(){
            return new RestTemplate();
        }
    }
    

    测试用的controller

    /**
     * @author fengzp
     * @date 17/5/9
     * @email fengzp@gzyitop.com
     * @company 广州易站通计算机科技有限公司
     */
    @RestController
    public class TestController {
    
        @Autowired
        RestTemplate restTemplate;
    
        @RequestMapping("/hi")
        public String hi(@RequestParam String id){
            return restTemplate.getForObject("http://service-a/hi?id="+id, String.class);
        }
    }
    

    1.2
    为了测试负载功能,这里要再新建一个模块service-b, 和上一篇的service-a的代码基本相同,只把端口修改了就可以。
    把client-a和service-b都启动成功后,打开eureka中心应该看到:

    1.3
    打开http://localhost:8910/hi?id=123

    可以看到服务已经成功调用。

    然后刷新页面

    看到端口已经改变,说明负载功能成功实现

    二、feign

    2.1
    新建模块client-b
    pom文件

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <parent>
            <artifactId>spring-cloud</artifactId>
            <groupId>com.feng</groupId>
            <version>0.0.1</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>client-b</artifactId>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-feign</artifactId>
            </dependency>
        </dependencies>
    </project>
    

    bootstrap.yml

    server:
      port: 8911
    
    eureka:
      client:
        serviceUrl:
              defaultZone: http://localhost:8010/eureka/
    
    spring:
      application:
          name: client-b
    

    ClientApplication, 使用@EnableFeignClients开启feiginClient功能

    /**
     * @author fengzp
     * @date 17/5/9
     * @email fengzp@gzyitop.com
     * @company 广州易站通计算机科技有限公司
     */
    @SpringBootApplication
    @EnableDiscoveryClient
    @EnableFeignClients
    public class ClientApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(ClientApplication.class, args);
        }
    
    }
    

    这里新建一个ServiceAFeignClient来调用service-a服务

    @Component
    @FeignClient(value = "service-a") //这里的name对应调用服务的spring.applicatoin.name
    public interface ServiceAFeignClient {
    
        @RequestMapping(value = "/hi")
        String hi(@RequestParam("id") String id);
    
    }
    

    Controller

    @RestController
    public class TestController {
    
        @Autowired
        ServiceAFeignClient serviceAFeignClient;
    
        @RequestMapping("/hi")
        public String hi(@RequestParam String id){
            return serviceAFeignClient.hi(id);
        }
    }
    

    2.2

    运行后的结果应该是和ribbon的相同。

    个人感觉使用feign比较舒服,代码比较简洁。

  • 相关阅读:
    JDBC_批量处理语句提高处理速度
    JDBC_获取插入记录的主键值
    JDBC_获取数据库连接
    SmartSprites 智能批量合并 CSS 雪碧图
    移动前端开发技巧摘录
    将已有项目提交到github/从github上pull到本地
    网页设计创新式布局与交互
    如何打好前端游击战
    jQuery Mobile十大常用技巧
    Javascript图片的懒加载与预加载
  • 原文地址:https://www.cnblogs.com/andyfengzp/p/6830963.html
Copyright © 2011-2022 走看看