Dubbo分布式框架简单学习(一)

Dubbo是阿里的一个分布式开源的框架,简单好用,与springboot结合,快速构建分布式项目。

构成:

         

结合spring boot实例(提供者和消费一致):

pom.xml:

     <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>dubbo</artifactId>
            <version>2.5.7</version>
            <exclusions>
                <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.alibaba</groupId>
                    <artifactId>fastjson</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.github.sgroschupf</groupId>
            <artifactId>zkclient</artifactId>
            <version>0.1</version>
        </dependency>
        <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
        </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>

</dependency>

服务提供者配置(采用代码形式):

  公共配置(provide和consumer都有的)


提供者配置;


指定服务提供者服务实现:


服务提供者接口:


实现并向注册中心暴露服务:

我这里使用version版本号形式暴露服务


Dubbo消费者配置:


创建同提供者服务接口


控制层调用提供者暴露的测试服务提供的方法


测试结果:



猜你喜欢

转载自blog.csdn.net/qq_28834183/article/details/80595350
今日推荐