soul从入门到放弃4--sofa-rpc代理

零、sofa-rpc简介

sofa-rpc扫盲贴:https://www.jianshu.com/p/d986dd9b1e63

蚂蚁金服开源的分布式rpc框架,跟dubbo很像的用法

image

一、添加sofa插件及相关操作

  • soul-admin --> 插件管理-> sofa 设置为开启。
image
  • 在sofa插件的配置中,配置如下:配置sofa的注册中心。
image
  • 每一个sofa接口方法,都会对应一条元数据,可以在 soul-admin -->元数据管理,进行查看。
image
  • 路径:就是你http请求的路径。
  • rpc扩展参数,对应为sofa接口的一些配置,调整的话,请在这里修改,支持json格式,以下字段:

{"loadbalance":"hash","retries":3,"timeout":-1}

二、依赖引入

soul-bootstrap添加依赖

注意sofa版本与注册中心版本


           com.alipay.sofa
           sofa-rpc-all
           5.7.6
       
       
           org.apache.curator
           curator-client
           4.0.1
       
       
           org.apache.curator
           curator-framework
           4.0.1
       
       
           org.apache.curator
           curator-recipes
           4.0.1
       
       
           org.dromara
           soul-spring-boot-starter-plugin-sofa
           ${last.version}
       

sofa服务引入soul的client

  • springboot应用
      
           org.dromara
           soul-spring-boot-starter-client-sofa
           ${soul.version}
       

yml中添加配置

soul:
       sofa:
         adminUrl: http://localhost:9095
         contextPath: /sofa
         appName: sofa
      # adminUrl: 为你启动的soul-admin 项目的ip + 端口,注意要加 http://
      # contextPath: 为你的这个项目在soul网关的路由前缀,这个你应该懂意思把? 比如/order ,/product 等等,网关会根据你的这个前缀来进行路由.
      # appName:你的应用名称,不配置的话,会默认取sofa配置中application 中的名称
  • springmvc应用
      
           org.dromara
           soul-client-sofa
           ${project.version}
       

bean中xml添加配置

  
           
      
      
           
           
           
      

三、调用参数的说明

  • 注册

通过在方法上使用@SoulSofaClient 注解,将方法注册到soul-admin

image
  • 启动你的提供者,输出日志 sofa client register success 大功告成
image
  • 参数调用基本和dubbo类似此处不赘述,只是简单调用下验证好使
image

四、浅入浅出探究@SoulSofaClient 注解如何注册到soul-admin

  • 从soul-examples/soul-examples-sofa/pom.xml入手,最为可疑的jar是

    org.dromara
    soul-spring-boot-starter-client-sofa
    ${soul.version}
    
        
            guava
            com.google.guava
        
    

  • 进入soul-spring-boot-starter-client-sofa项目中发现spring.factories

spring.factories科普贴:https://www.cnblogs.com/huanghzm/p/12217630.html

image
  • 进入SoulSofaClientConfiguration一探究竟
image
  • 进入SofaServiceBeanPostProcessor再探究竟,此方法实现了BeanPostProcessor

BeanPostProcessor科普贴:https://www.jianshu.com/p/369a54201943

https://blog.csdn.net/qq_38526573/article/details/88086752

构造方法中创建了线程池,赋值了sofaConfig(配置信息)、url(注册地址)

image

在postProcessAfterInitialization中,也就是bean实例化后,基于线程池发起对配置信息的注册

image

在handler中,主要是将有@SoulSofaClient注解的方法注册到soul-admin上

image

五、心得与体会

  • 经常写业务代码,好多学到的知识不能应用,忘的贼拉拉的快啊。通过一个注册小模块,使用大佬们传授的断点+猜想法 也算是理顺了流程。满足好奇的同时,复习不少之前学习spring的知识。
  • 日拱一卒,每天进步一点点

你可能感兴趣的:(soul从入门到放弃4--sofa-rpc代理)