博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【JEECG Dubbo专题】jeecg-p3集成dubbo文档
阅读量:6315 次
发布时间:2019-06-22

本文共 4206 字,大约阅读时间需要 14 分钟。

  hot3.png

一、项目介绍

二、项目分解说明

1 . p3dubbo-service

    说明:该项目为简单的maven构建项目,无任何依赖引用,只作接口定义

     

  接口定义如下:

pom文件说明

  

2. p3dubbo-service

  说明:该项目为接口实现项目,进行业务逻辑编写

 

  接口实现如下:

@Service("demoService")

public class DemoServiceImpl implements DemoServiceI {

public String sayHello(String name) {

System.out.println(" -- jeecg-p3-dubbo---say: "+name);                  

return name + "[jeecg-p3-dubbo]";

     }

}

    pom如下:(引入jeecg-p3父POM,增加dubbo依赖支持)

  <parent>

    <groupId>org.p3framework</groupId>

    <artifactId>jeecg-p3-pom</artifactId>

    <version>1.0-SNAPSHOT</version>

</parent>

<dependencies>

<!-- 接口API -->

<dependency>

<groupId>org.p3dubbo</groupId>

<artifactId>p3dubbo-service</artifactId>

<version>0.0.1-SNAPSHOT</version>

<type>jar</type>

<scope>compile</scope>

</dependency>

<!-- dubbo jar -->

<dependency>

<groupId>com.alibaba</groupId>

<artifactId>dubbo</artifactId>

<version>2.5.3</version>

<exclusions>

                <exclusion>

                    <groupId>org.springframework</groupId>

                    <artifactId>spring</artifactId>

                </exclusion>

            </exclusions>

</dependency>

<dependency>

<groupId>org.apache.zookeeper</groupId>

<artifactId>zookeeper</artifactId>

<version>3.4.6</version>

</dependency>

<dependency>

<groupId>com.github.sgroschupf</groupId>

<artifactId>zkclient</artifactId>

<version>0.1</version>

</dependency>

      </dependencies>

  Spring dubbo配置文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns=""

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"

    xsi:schemaLocation="http://www.springframework.org/schema/beans        

            

            

    ">

<!-- 提供方应用名称信息,这个相当于起一个名字,我们dubbo管理页面比较清晰是哪个应用暴露出来的 -->

   <dubbo:application name="jeecgp3_dubbo_provider"></dubbo:application>

   <!-- 使用zookeeper注册中心暴露服务地址 -->  

   <dubbo:registry address="zookeeper://192.168.0.1:2181" check="false" subscribe="false" register=""></dubbo:registry>

   <!-- 要暴露的服务接口 -->  

   <dubbo:service interface="com.jeecg.demo.DemoServiceI" ref="demoService" />

</beans>

3..jeecg-p3-web (启动项目)

    说明:该项目为jeecg-p3启动项目,作为服务提供项目,需要引入p3dubbo-service-impl项目

    1)引入spring dubbo配置

    2)pom引入接口实现项目 

    启动项目jeecg-p3-web,提供服务(前台先按照zookeeper)

4. p3dubbo-consumer(消费项目)

    

  测试类:

public class DubboConsumer {

public static void main(String[] args) throws Exception {

ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationContext.xml" });         

context.start();

DemoServiceI demoService = (DemoServiceI) context.getBean("demoService");

String hello = demoService.sayHello("1998");

System.out.println(hello);

}

}

Spring 配置

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns=""

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"

    xsi:schemaLocation="http://www.springframework.org/schema/beans       

            

            

    ">

    <!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 -->  

    <dubbo:application name="dubbo_consumer" />  

    <!-- 使用zookeeper注册中心暴露服务地址 -->  

    <dubbo:registry address="zookeeper://192.168.0.1:2181" />  

    <!-- 生成远程服务代理,可以像使用本地bean一样使用demoService -->  

    <dubbo:reference id="demoService"  interface="com.jeecg.demo.DemoServiceI" />  

</beans>

pom引用:

<project xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ">                 

<modelVersion>4.0.0</modelVersion>

<groupId>org.p3dubbo</groupId>

<artifactId>p3dubbo-consumer</artifactId>

<version>0.0.1-SNAPSHOT</version>

<parent>

<groupId>org.p3framework</groupId>

<artifactId>jeecg-p3-pom</artifactId>

<version>1.0-SNAPSHOT</version>

</parent>

<dependencies>

<!-- api -->

<dependency>

<groupId>org.p3dubbo</groupId>

<artifactId>p3dubbo-service</artifactId>

<version>0.0.1-SNAPSHOT</version>

<scope>compile</scope>

</dependency>

<!-- dubbo jar -->

<dependency>

<groupId>com.alibaba</groupId>

<artifactId>dubbo</artifactId>

<version>2.5.3</version>

<exclusions>

<exclusion>

<groupId>org.springframework</groupId>

<artifactId>spring</artifactId>

</exclusion>

</exclusions>

</dependency>

<dependency>

<groupId>org.apache.zookeeper</groupId>

<artifactId>zookeeper</artifactId>

<version>3.4.6</version>

</dependency>

<dependency>

<groupId>com.github.sgroschupf</groupId>

<artifactId>zkclient</artifactId>

<version>0.1</version>

</dependency>

</dependencies>

</project>

测试结果

[1].采用maven方式启动jeecg-p3-web项目      

  [2].执行类DubboConsumer

          客户端:

     服务端:  

    源码下载地址: 密码:qtx3

转载于:https://my.oschina.net/jeecg/blog/731581

你可能感兴趣的文章
Repository模式中,Update总是失败及其解析
查看>>
.Net 转战 Android 4.4 日常笔记(2)--HelloWorld入门程序
查看>>
[原创]浅谈测试团队转型,思维模式的转变是关键
查看>>
Redis学习-SortedSet
查看>>
android CoordinatorLayout使用
查看>>
机器学习资料大汇总
查看>>
Python selenium 滚动条 详解
查看>>
poj1035Spell checker
查看>>
微信程序开发
查看>>
如何退出minicom【学习笔记】
查看>>
李开复教你如何给自己的简历打分
查看>>
C++内存布局之虚拟继承
查看>>
Sqlserver 数据库基本查询
查看>>
图书馆维护系统总结
查看>>
[hadoop源码阅读][5]-counter的使用和默认counter的含义
查看>>
SAP HUM 如何对一个HU做上架?
查看>>
LINUX系统中动态链接库的创建与使用{补充}
查看>>
三维视觉国际会议首度在中国举办
查看>>
达索系统入手XFlow开发商 强化3DEXPERIENCE平台的仿真能力
查看>>
Loadrunner 性能测试服务器监控指标
查看>>