幼敏悟过人,读书辄成诵。这篇文章主要讲述Dubbo | Dubbo快速上手笔记 - 环境与配置 #yyds干货盘点#相关的知识,希望能为你提供帮助。
@[TOC](Dubbo快速上手笔记 - 环境与配置)
前言比较基础的dubbo学习笔记,一些参考资料如下:
尚硅谷Dubbo教程(dubbo经典之作)
Dubbo官网
Dubbo 2.x文档
1. Dubbo相关概念
1.1 自动服务发现工作原理
文章图片
2. 启动文件
文章图片
2.1 zookeeper-3.4.11\\bin\\zkServer.cmd可以在zookeeper-3.4.11\\conf路径下配置zookeeper客户端的端口号以及data数据:
文章图片
在zookeeper-3.4.11\\bin目录下运行cmd启动zookeeper服务:
文章图片
2.2 zookeeper-3.4.11\\bin\\zkCli.cmd在zookeeper-3.4.11\\bin目录下运行cmd启动zookeeper客户端:
文章图片
2.3 java -jar dubbo-admin-0.0.1-SNAPSHOT.jar可以在incubator-dubbo-ops-master\\dubbo-admin\\src\\main\\resources路径下修改application.properties文件中修改DubboWeb界面的端口:
文章图片
在项目根路径下打开命令行,执行
mvn clean package
将项目打成jar包,再执行java -jar dubbo-admin-0.0.1-SNAPSHOT.jar
命令运行Dubbo;文章图片
文章图片
2.4 dubbo-monitor-simple-2.0.0\\assembly.bin\\start.bat可以在dubbo-monitor-simple-2.0.0\\conf路径下的dubbo.properties文件配置监控页端口:
文章图片
在dubbo-monitor-simple-2.0.0\\assembly.bin路径下双击运行start.bat文件:
文章图片
文章图片
3. 修改项目文件3.1 在pom.xml文件里导入相关依赖
<
!-- 引入dubbo -->
<
!-- https://mvnrepository.com/artifact/com.alibaba/dubbo -->
<
dependency>
<
groupId>
com.alibaba<
/groupId>
<
artifactId>
dubbo<
/artifactId>
<
version>
2.6.2<
/version>
<
/dependency>
<
!-- 注册中心使用的是zookeeper,引入操作zookeeper的客户端端 -->
<
dependency>
<
groupId>
org.apache.curator<
/groupId>
<
artifactId>
curator-framework<
/artifactId>
<
version>
2.12.0<
/version>
<
/dependency>
3.2 在application.properties文件 / src/main/resources/provider.xml文件中配置dubbo 3.2.1 提供者
<
?xml version="1.0" encoding="UTF-8"?>
<
beans xmlns="http://www.springframework.org/schema/beans"
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.xsd
http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd
http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
<
!-- 1、指定当前服务/应用的名字(同样的服务名字相同,不要和别的服务同名) -->
<
dubbo:application name="user-service-provider">
<
/dubbo:application>
<
!-- 2、指定注册中心的位置 -->
<
!-- <
dubbo:registry address="zookeeper://127.0.0.1:2181">
<
/dubbo:registry>
-->
<
dubbo:registry protocol="zookeeper" address="127.0.0.1:2181">
<
/dubbo:registry>
<
!-- 3、指定通信规则(name指定通信协议?通信端口) -->
<
dubbo:protocol name="dubbo" port="20882">
<
/dubbo:protocol>
<
!-- 4、暴露服务ref:指向服务的真正的实现对象 -->
<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl01" timeout="1000" version="1.0.0">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
<
!--统一设置服务提供方的规则-->
<
dubbo:provider timeout="1000">
<
/dubbo:provider>
<
!-- 服务的实现 -->
<
bean id="userServiceImpl01" class="com.atguigu.gmall.service.impl.UserServiceImpl">
<
/bean>
<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl02" timeout="1000" version="2.0.0">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
<
bean id="userServiceImpl02" class="com.atguigu.gmall.service.impl.UserServiceImpl2">
<
/bean>
<
!-- 连接监控中心 -->
<
dubbo:monitor protocol="registry">
<
/dubbo:monitor>
<
/beans>
3.2.2 消费者
<
?xml version="1.0" encoding="UTF-8"?>
<
beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd
http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
<
!--启用包扫描-->
<
context:component-scan base-package="com.atguigu.gmall.service.impl">
<
/context:component-scan>
<
dubbo:application name="order-service-consumer">
<
/dubbo:application>
<
dubbo:registry address="zookeeper://127.0.0.1:2181">
<
/dubbo:registry>
<
!--配置本地存根-->
<
!--声明需要调用的远程服务的接口;生成远程服务代理-->
<
!--
1)、精确优先 (方法级优先,接口级次之,全局配置再次之)
2)、消费者设置优先(如果级别一样,则消费方优先,提供方次之)
-->
<
!-- timeout="0" 默认是1000ms-->
<
!-- retries="":重试次数,不包含第一次调用,0代表不重试-->
<
!-- 幂等(设置重试次数)【查询、删除、修改】、非幂等(不能设置重试次数)【新增】 -->
<
dubbo:reference interface="com.atguigu.gmall.service.UserService"
id="userService" timeout="5000" retries="3" version="*">
<
!-- <
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
-->
<
/dubbo:reference>
<
!-- 配置当前消费者的统一规则:所有的服务都不检查 -->
<
dubbo:consumer check="false" timeout="5000">
<
/dubbo:consumer>
<
dubbo:monitor protocol="registry">
<
/dubbo:monitor>
<
!-- <
dubbo:monitor address="127.0.0.1:7070">
<
/dubbo:monitor>
-->
<
/beans>
在进行SpringBoot整合Dubbo时,以上信息可以配置进application.properties文件里;详情请见《4.8 SpringBoot与Dubbo整合的三种方式》
3.3 使用注解开启功能
注解 | 位置 | 功能 |
---|---|---|
@EnableDubbo | 开启dubbo相关功能 | 主启动类 |
@Service | 暴露服务 | 服务提供者provider |
@Reference | 远程调用 | 服务消费者consumer |
dubbo:consumer 配置
4.1 配置文件的优先级
文章图片
- JVM 启动 -D 参数优先;
- XML 次之;
- Properties 最后,相当于缺省值;
文章图片
- 越上面优先级越高;
- 精确优先 (方法级优先,接口级次之,全局配置再次之);
- 消费者设置优先(如果级别一样,则消费方优先,提供方次之);
- Spring配置文件
< !-- 关闭某个服务的启动时检查 (没有提供者时报错) --> < dubbo:reference interface="com.foo.BarService" check="false" />
< dubbo:consumer check=" false" />
< !-- 关闭注册中心启动时检查 (注册订阅失败时报错) -->
< dubbo:registry check=" false" />
- dubbo.properties```properties
dubbo.reference.com.foo.BarService.check=false
dubbo.reference.check=false
dubbo.consumer.check=false
dubbo.registry.check=false
- 通过 -D 参数
java -Ddubbo.reference.com.foo.BarService.check=false
java -Ddubbo.reference.check=false
java -Ddubbo.consumer.check=false
java -Ddubbo.registry.check=false
消费者有一种关闭启动检查服务提供者的配置:
<
dubbo:reference check="false"/>
4.4 超时timeout提供者:
<
!-- 配置超时时间 -->
<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl01" timeout="1000"">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
消费者:
<
!-- 配置超时时间 -->
<
dubbo:reference interface="com.foo.BarService"
id="BarService" timeout="5000">
<
/dubbo:reference>
<
!-- 还可以给具体方法配置超时时间(假设BarService里有testMethod方法) -->
<
dubbo:reference interface="com.foo.BarService"
id="BarService" timeout="5000">
<
dubbo:method name="testMethod" timeout="2000">
<
/dubbo:method>
<
/dubbo:reference>
可以体现:
- 精确优先 (方法级优先,接口级次之,全局配置再次之);
- 消费者设置优先(如果级别一样,则消费方优先,提供方次之);
<
!-- retries="":重试次数,不包含第一次调用,0代表不重试-->
<
!-- 幂等(设置重试次数)【查询、删除、修改】、非幂等(不能设置重试次数)【新增】 -->
<
dubbo:reference interface="com.foo.BarService"
id="BarService" timeout="5000" retries="3" >
<
/dubbo:reference>
4.6 多版本version提供者:
<
!-- 1.0.0版本-->
<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl01" timeout="1000" version="1.0.0">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
<
!-- 服务的实现 -->
<
bean id="userServiceImpl01" class="com.atguigu.gmall.service.impl.UserServiceImpl">
<
/bean>
<
!-- 2.0.0版本-->
<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl02" timeout="1000" version="2.0.0">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
<
bean id="userServiceImpl02" class="com.atguigu.gmall.service.impl.UserServiceImpl2">
<
/bean>
消费者:
<
!-- version指定用哪个版本,*表示随机版本-->
<
dubbo:reference interface="com.atguigu.gmall.service.UserService"
id="userService" timeout="5000" retries="3" version="*">
<
!-- <
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
-->
<
/dubbo:reference>
4.7 本地存根stub
文章图片
提供者:
public class UserServiceStub implements UserService
private final UserService userService;
/**
* 传入的是userService远程的代理对象
* @param userService
*/
public UserServiceStub(UserService userService)
super();
this.userService = userService;
@Override
public List<
UserAddress>
getUserAddressList(String userId)
System.out.println("UserServiceStub.....");
if(!StringUtils.isEmpty(userId))
return userService.getUserAddressList(userId);
return null;
消费者:
<
!--配置本地存根-->
<
dubbo:reference interface="com.atguigu.gmall.service.UserService"
id="userService" timeout="5000" retries="3" version="*" stub="com.*.UserServiceStub">
<
/dubbo:reference>
4.8 SpringBoot与Dubbo整合的三种方式
- 导入dubbo-starter;在application.properties配置属性;使用
@Service
暴露服务;使用@Reference
引用服务; - 保留dubbo xml配置文件;导入dubbo-starter;使用
@ImportResource
导入dubbo的配置文件即可;- 在主启动类上
@ImportResource(locations="classpath:provider.xml")
;
- 在主启动类上
- 使用注解API的方式;将每一个组件手动创建到容器中,让dubbo来扫描其他的组件;使用
@Service
暴露服务;- 主启动类上:
@EnableDubbo(scanBasePackages="com.atguigu.gmall")
; - 在config包下进行如下配置:
- 主启动类上:
@Configuration
public class MyDubboConfig @Bean
public ApplicationConfig applicationConfig()
ApplicationConfig applicationConfig = new ApplicationConfig();
applicationConfig.setName("boot-user-service-provider");
return applicationConfig;
//<
dubbo:registry protocol="zookeeper" address="127.0.0.1:2181">
<
/dubbo:registry>
@Bean
public RegistryConfig registryConfig()
RegistryConfig registryConfig = new RegistryConfig();
registryConfig.setProtocol("zookeeper");
registryConfig.setAddress("127.0.0.1:2181");
return registryConfig;
//<
dubbo:protocol name="dubbo" port="20882">
<
/dubbo:protocol>
@Bean
public ProtocolConfig protocolConfig()
ProtocolConfig protocolConfig = new ProtocolConfig();
protocolConfig.setName("dubbo");
protocolConfig.setPort(20882);
return protocolConfig;
/**
*<
dubbo:service interface="com.atguigu.gmall.service.UserService"
ref="userServiceImpl01" timeout="1000" version="1.0.0">
<
dubbo:method name="getUserAddressList" timeout="1000">
<
/dubbo:method>
<
/dubbo:service>
*/
@Bean
public ServiceConfig<
UserService>
userServiceConfig(UserService userService)
ServiceConfig<
UserService>
serviceConfig = new ServiceConfig<
>
();
serviceConfig.setInterface(UserService.class);
serviceConfig.setRef(userService);
serviceConfig.setVersion("1.0.0");
//配置每一个method的信息
MethodConfig methodConfig = new MethodConfig();
methodConfig.setName("getUserAddressList");
methodConfig.setTimeout(1000);
//将method的设置关联到service配置中
List<
MethodConfig>
methods = new ArrayList<
>
();
methods.add(methodConfig);
serviceConfig.setMethods(methods);
//ProviderConfig
//MonitorConfig
return serviceConfig;
最后::: hljs-center
新人制作,如有错误,欢迎指出,感激不尽!
:::
::: hljs-center
欢迎关注公众号,会分享一些更日常的东西!
:::
::: hljs-center
如需转载,请标注出处!
:::
::: hljs-center
文章图片
【Dubbo | Dubbo快速上手笔记 - 环境与配置 #yyds干货盘点#】:::
推荐阅读
- #yyds干货盘点#SecurityContextHolder之策略模式源码分析
- #yyds干货盘点# 数据结构与算法之顺序表
- #私藏项目实操分享# SAP 电商云 Spartacus UI 的 checkout 场景中的串行请求设计分析
- 无快不破,在本地 docker 运行 IDEA 里面的项目()
- #yyds干货盘点#Vue-Router路由所有相关方法讲解(全),实战教学含登录拦截,建议收藏
- #yyds干货盘点#JavaScript之彻底理解原型与原型链
- #yyds干货盘点# InnoDB解决幻读的方案--LBCC&MVCC
- 迁移到新的Web主机后显示的WordPress模板
- 自定义帖子类型的WordPress模板层次结构