zoukankan      html  css  js  c++  java
  • 【Dubbo】01. 基于注解的Dubbo Demo

    01. 基于注解的Dubbo Demo

    1. 创建一个空的maven项目

    <?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">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.dxh</groupId>
        <artifactId>demo-base</artifactId>
        <packaging>pom</packaging>
        <version>1.0-SNAPSHOT</version>
    
        <properties>
            <dubbo.version>2.7.5</dubbo.version>
        </properties>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-common</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-registry-zookeeper</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-registry-nacos</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-rpc-dubbo</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-remoting-netty4</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.dubbo</groupId>
                    <artifactId>dubbo-serialization-hessian2</artifactId>
                    <version>${dubbo.version}</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <dependencies>
            <!-- 日志配置 -->
            <dependency>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
                <version>1.2.16</version>
            </dependency>
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>1.7.5</version>
            </dependency>
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
                <version>1.7.5</version>
            </dependency>
    
            <!-- json数据化转换 -->
            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>fastjson</artifactId>
                <version>1.2.62</version>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>11</source>
                        <target>11</target>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
    </project>
    

    2. 创建module —— service-api

    新建接口:

    package com.dxh.service;
    
    public interface HelloService {
        String sayHello(String name);
    }
    
    

    3. 创建module —— service-provider

    创建服务提供者模块

    3.1 引入相关依赖

    pom中引入 service-api

    pom中引入dubbo

    <dependencies>
            <!-- 引入service-api-->
            <dependency>
                <groupId>com.dxh</groupId>
                <artifactId>service-api</artifactId>
                <version>1.0-SNAPSHOT</version>
            </dependency>
            <!-- 引入dubbo-->
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-registry-zookeeper</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-rpc-dubbo</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-remoting-netty4</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-serialization-hessian2</artifactId>
            </dependency>
        </dependencies>
    

    3.2 实现service-api中的接口

    编写实现类实现 HelloService注意@Service注解使用dubbo的注解

    package com.dxh.service.impl;
    
    import com.dxh.service.HelloService;
    import org.apache.dubbo.config.annotation.Service;
    
    //这里的注解使用dubbo的@Service的注解
    @Service
    public class HelloServiceImpl implements HelloService {
        @Override
        public String sayHello(String name) {
            return "Hello: "+ name;
        }
    }
    

    3.3 新建dubbo配置文件

    resource中新建配置文件——dubbo-provider.properties

    dubbo.application.name=service-provider
    dubbo.protocol.name=dubbo
    # 端口随便写
    dubbo.protocol.port=20880
    

    3.4 编写配置类以及启动类

    我们使用静态内部类的方法编写配置类

    package com.dxh;
    
    import org.apache.dubbo.config.RegistryConfig;
    import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.context.annotation.PropertySource;
    
    import java.io.IOException;
    
    public class DubboPureMain {
        public static void main(String[] args) throws IOException {
            AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ProviderConfiguration.class);
            context.start();
            // 避免直接关闭
            System.in.read();
        }
    
        @Configuration
        @EnableDubbo(scanBasePackages = "com.dxh.service.impl")
        @PropertySource("classpath:/dubbo-provider.properties")
        static class ProviderConfiguration{
            /**
             * 可以在配置文件中填写 dubbo.registry.address=zookeeper://39.100.230.98:2181
             * 这样的话 这个bean就可以不写了
             */
            @Bean
            public RegistryConfig registryConfig(){
                RegistryConfig registryConfig = new RegistryConfig();
                registryConfig.setAddress("zookeeper://39.100.230.98:2181");
                return registryConfig;
            }
        }
    }
    
    

    4. 创建module —— service-consumer

    创建服务消费者模块

    4.1 引入相关依赖

    pom中引入 service-api

    pom中引入dubbo

    <dependencies>
            <dependency>
                <groupId>com.dxh</groupId>
                <artifactId>service-api</artifactId>
                <version>1.0-SNAPSHOT</version>
            </dependency>
    
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-registry-zookeeper</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-rpc-dubbo</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-remoting-netty4</artifactId>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-serialization-hessian2</artifactId>
            </dependency>
        </dependencies>
    

    4.2 创建消费者组件

    注意@Reference使用dubbo的注解

    package com.dxh.bean;
    
    import com.dxh.service.HelloService;
    import org.apache.dubbo.config.annotation.Reference;
    import org.springframework.stereotype.Component;
    
    @Component
    public class ConsumerComponet {
        //注意使用dubbo的注解
        @Reference
        private HelloService helloService;
    
        public String sayHello(String name){
            return helloService.sayHello(name);
        }
    }
    

    4.3 新建dubbo配置文件

    resource中新建配置文件——dubbo-consumer.properties

    dubbo.application.name=service-consumer
    dubbo.registry.address=zookeeper://39.100.230.98:2181
    

    4.4 编写配置类以及启动类

    package com.dxh;
    
    import com.dxh.bean.ConsumerComponet;
    import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    import org.springframework.context.annotation.ComponentScan;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.context.annotation.PropertySource;
    
    import java.io.IOException;
    
    public class AnnotationConsumerMain {
        @Configuration
        @PropertySource("classpath:/dubbo-consumer.properties")
        @ComponentScan(basePackages = "com.dxh.bean")
        @EnableDubbo
        static class ConsumerConfiguration{
    
        }
    
        public static void main(String[] args) throws IOException {
            AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ConsumerConfiguration.class);
            context.start();
            //获取消费者组件
            ConsumerComponet service = context.getBean(ConsumerComponet.class);
            while (true){
                System.in.read();
                String hello = service.sayHello("world");
                System.out.println("result : "+hello);
            }
        }
    }
    

    5. 启动测试效果

    • 启动服务提供者
    • 启动服务消费者

    test

  • 相关阅读:
    团队冲刺(六)
    团队冲刺(五)
    团队冲刺(四)
    机器学习十讲第二讲
    机器学习十讲第一讲
    逻辑斯蒂回归实现手写字的识别
    利用js实现搜索关键字变红色
    《软件架构的艺术》阅读笔记02
    TensorFlow文本分类
    TensorFlow图像分类
  • 原文地址:https://www.cnblogs.com/isdxh/p/14656141.html
Copyright © 2011-2022 走看看