记录一次dubbo项目实战



一、案例说明

存在2个系统,A系统和B系统,A系统调用B系统的接口获取数据,用于查询用户列表。

二、环境搭建

安装zookeeper,解压(zookeeper-3.4.8.tar.gz)得到如下:

然后进入conf将zoo_sample.cfg改名成zoo.cfg。并相关如下内容:

该目录为存放数据的目录。然后启动,在bin目录下:

三、工程创建

1、搭建B工程

1.导入依赖




org.springframework
spring-webmvc
4.1.3.RELEASE


org.slf4j
slf4j-log4j12
1.6.4



com.alibaba
dubbo
2.5.3



spring
org.springframework





org.apache.zookeeper
zookeeper
3.3.3


com.github.sgroschupf
zkclient
0.1


复制代码

2.创建对象

public class User implements Serializable{

//序列化自动生成
private static final long serialVersionUID = 1749666453251148943L;

private Long id;
private String username;
private String password;
private Integer age; 
//getter and setter
}
复制代码


3.创建服务

public class UserServiceImpl implements UserService {

//实现查询,这里做模拟实现,不做具体的数据库查询
public List queryAll() {
List list = new ArrayList();
for (int i = 0; i < 10; i++) {
User user = new User();
user.setAge(10 + i);
user.setId(Long.valueOf(i + 1));
user.setPassword("123456");
user.setUsername("username_" + i);
list.add(user);
}
return list;
}
}
复制代码

4.编写Dubbo的配置文件

位置我放在根目录下dubbo/dubbo-server.xml,内容如下:

"http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org
/schema/context" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
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 http://www.springframework.org/schema/beans
/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context
/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop
/spring-aop-4.0.xsd http://www.springframework.org
/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">


"dubbo-b-server" />

"zookeeper://127.0.0.1:2181" client="zkclient"/>

"dubbo" port="20880" />

"com.shen.dubbo.service.
UserService" ref="userServiceImpl" />

"userServiceImpl" class="com.shen.dubbo.service.impl.UserServiceImpl" />

复制代码

5.编写Web.xml

"1.0" encoding="UTF-8"?>
"http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
dubbo-b

contextConfigLocation
classpath:dubbo/dubbo-*.xml



org.springframework.web.context.
ContextLoaderListener


复制代码


6.启动tomcat

在控制台中将会看到如下内容:

可以看到,已经将UserService服务注册到zookeeper注册中心,协议采用的是dubbo。


2、搭建A工程

1.拷贝基本文件

从b系统中拷贝User对象、UserService接口到a系统

.

2.编写Dubbo的配置文件


"dubbo-a-consumer" />

"zookeeper://127.0.0.1:2181" client="zkclient"/>

"userService" interface="com.shen.dubbo.service.UserService"/>
复制代码

3.编写UserService测试用例

public class UserServiceTest {
private UserService userService;
@Before
public void setUp() throws Exception {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(
"classpath:dubbo/*.xml");
this.userService = applicationContext.getBean(UserService.class);
}
@Test
public void testQueryAll() {
List users = this.userService.queryAll();
for (User user : users) {
System.out.println(user);
}
}
}
复制代码


查看效果如下:

可以看到,已经查询到10条数据,那么,也就是说A系统通过B系统提供的服务获取到了数据。

在此我向大家推荐一个架构学习交流群。交流学习群号:478030634 里面会分享一些资深架构师录制的视频录像:有Spring,MyBatis,Netty源码分析,高并发、高性能、分布式、微服务架构的原理,JVM性能优化、分布式架构等这些成为架构师必备的知识体系。还能领取免费的学习资源,目前受益良多

3、解决代码重复问题

我们可以看到,在上面的案例中User实体和服务接口两个项目都需要使用,代码复用不高。那么我们可以将该部分代码抽取出来打成包,以供所有系统使用。故可以在创建一个工程项目名为dubbo-b-api。然后将相关的代码都放到该项目中,再在其它项目中导入该项目依赖即可。这也是我们在真实项目中应该做的事情,因为调用方未必知道细节。


你可能感兴趣的:(记录一次dubbo项目实战)