Spring boot 集成Dubbox的方法示例

网友投稿 223 2023-02-04


Spring boot 集成Dubbox的方法示例

前言

因为工作原因,需要在项目中集成dubbo,所以去查询dubbo相关文档,发现dubbo目前已经不更新了,所以把目光投向了dubbox,dubbox是当当网基于dubbo二次开发的一个项目,dubbox,因为公司项目中一个是基于spring mvc 3.0的,一个是基于spring boot的,而spring boot相对来说文档少一点,所以此文记录下spring boot下如何继承dubbox

一、安装zookeeper

1、zookeeper简介

ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是Google的Chubby一个开源的实现,是Hadoop和Hbase的重要组件。它是一个为分布式应用提供一致性服务的软件,提供的功能包括:配置维护、域名服务、分布式同步、组服务等。

ZooKeeper的目标就是封装好复杂易出错的关键服务,将简单易用的接口和性能高效、功能稳定的系统提供给用户

而dubbo就是依赖zookeeper的一个分布式框架,当然二次开发的dubbox肯定也会依赖于zookeeper,所以我们需要先安装zookeeper

2、下载zookeeper

zookeeper官网地址http://zookeeper.apache.org/

下载地址http://apache.fayea.com/zookeeper/

本地下载地址,更加方便://jb51.net/softs/578345.html

3、安装zookeeper

因为我是在Windows环境配置的,所以就简单说一下windows下面的配置吧,首先解压压缩包,然后进入conf文件夹,复制一下zoosample.cfg创建副本,然后重命名为zoo.cfg,因为zookeeper只识别zoo.cfg,而默认是没有这个文件的,zoosample.cfg是默认的配置文件,但是因为文件名的原因,所以zookeeper无法识别,当然直接重命名zoo_sample.cfg也是可以的,只是看自己喜欢咯

4、启动zookeeper

Windows环境下直接运行bin目录下的zkServer.cmd就可以,如果是linux环境,则在bin目录下运行

./zkServer.sh start

命令,就可以启动zookeeper

5、添加dubbox依赖

com.alibaba

dubbo

2.8.4

com.101tec

zkclient

0.9

org.apache.zookeeper

zookeeper

3.4.6

org.slf4j

slf4j-log4j12

log4j

log4j

注意,这里的dubbo的2.8.4版本是我自己编译的,这个在maven仓库是没有的,因为dubbo已经不更新了,而2.8.4是当当网的dubbox,所以如果你要使用,要么就编译dubbox,要么就使用旧版本的dubbo

6、添加服务提供者的接口 接口类:

package wang.raye.dubbo.interfaces;

public interface DubboInterface {

public String hello(String name);

}

接口实现类:

package wang.raye.dubbodemo1;

import org.springframework.stereotype.Service;

import wang.raye.dubbo.DubboInterface;

@Service

public class DubboImpl implements DubboInterface {

public String hello(String name) {

return "hello "+name+" this is dubbodemo1";

}

}

7、添加dubbo配置xml xml文件放在sources文件夹,名字可以随便命名,我这里是dubbo.xml

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

xmlns:jee="http://springframework.org/schema/jee"

xmlns:tx="http://springframework.org/schema/tx"

xmlns:dubbo="http://code.alibahttp://batech.com/schema/dubbo"

xmlns:context="http://springframework.org/schema/context"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframehttp://work.org/schema/beans/spring-beans-3.1.xsd

http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx-3.1.xsd

http://springframework.org/schema/jee http://springframework.org/schema/jee/spring-jee-3.1.xsd

http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd

http://springframework.org/schema/context http://springframework.org/schema/context/spring-context-3.1.xsd"

default-lazy-init="false" >

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

xmlns:jee="http://springframework.org/schema/jee"

xmlns:tx="http://springframework.org/schema/tx"

xmlns:dubbo="http://code.alibahttp://batech.com/schema/dubbo"

xmlns:context="http://springframework.org/schema/context"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframehttp://work.org/schema/beans/spring-beans-3.1.xsd

http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx-3.1.xsd

http://springframework.org/schema/jee http://springframework.org/schema/jee/spring-jee-3.1.xsd

http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd

http://springframework.org/schema/context http://springframework.org/schema/context/spring-context-3.1.xsd"

default-lazy-init="false" >

这里每个节点都有解释了,相信不过过多解释

8、配置消费者

类中引用远程提供者

package wang.raye.dubbodemo3.controller;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.ResponseBody;

import wang.raye.dubbo.DubboInterface;

@Controller

public class DubboControll {

@Autowired

private DubboInterface interface1;

@RequestMapping("/hello")

@ResponseBody

public String hello(String name){

return interface1.hello(name);

}

}

消费者的xml配置

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

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

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

http://springframework.org/schema/beans/spring-beans.xsd

http://code.alibabatech.com/schema/dubbo

http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

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

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

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

http://springframework.org/schema/beans/spring-beans.xsd

http://code.alibabatech.com/schema/dubbo

http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

这里也是每个接点都有注释,应该不用多说,而且比较本文不是讲究dubbo配置的,主要是讲spring boot集成dubbox

9、引用dubbo配置xml 在Spring boot的Application类添加注解

@ImportResource({"classpath:dubbo.xml"})

因为我的xml名字是dubbo.xml,所以当你用的时候需要换成自己的xml名字,注意:消费者项目和服务提供者的项目的Application类都需要配置此注解

结尾

至此,spring boot集成duubox就说完了,当然这样说肯定很空洞,所以我吧我测试的项目上传到了github,大家可以参考看看,当然要测试的话需要修改dubbo.xml的dubbo:registry 节点中的zookeeper地址。

demo地址,为了显示出dubbo的优势,所以我创建了2个服务提供者,频繁调用的话,会自动选择这2个中的任何一个,连负载均衡都免了,应该是zookeeper自己做了,所以感觉还是挺不错的


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Vue中父子组件通讯之todolist组件功能开发
下一篇:java一个线程获取状态(java监听线程状态)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~