mirror of
https://gitee.com/yudaocode/SpringBoot-Labs.git
synced 2026-09-03 05:53:54 +08:00
增加 spring cloud alibaba dubbo 服务调用的示例
This commit is contained in:
@@ -126,7 +126,7 @@
|
||||
|
||||
* 《芋道 Spring Cloud Alibaba 介绍》
|
||||
* [《芋道 Spring Cloud Alibaba 注册中心 Nacos 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/Nacos-Discovery/?github) 对应 [labx-01](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-01)
|
||||
* 《芋道 Spring Cloud Alibaba 服务调用 Dubbo 入门》
|
||||
* [《芋道 Spring Cloud Alibaba 服务调用 Dubbo 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/Dubbo/?github) 对应 [labx-07](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-07)
|
||||
* [《芋道 Spring Cloud Alibaba 服务容错 Sentinel 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/Sentinel/?github) 对应 [labx-04](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-04)
|
||||
* [《芋道 Spring Cloud Alibaba 消息队列 RocketMQ 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/RocketMQ/?github) 对应 [labx-06](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-06)
|
||||
* [《芋道 Spring Cloud Alibaba 配置中心 Nacos 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/Nacos-Config/?github) 对应 [labx-05](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-05)
|
||||
@@ -149,7 +149,7 @@
|
||||
|
||||
## 服务调用
|
||||
|
||||
* 《芋道 Spring Cloud Alibaba 服务调用 Dubbo 入门》
|
||||
* [《芋道 Spring Cloud Alibaba 服务调用 Dubbo 入门》](http://www.iocoder.cn/Spring-Cloud-Alibaba/Dubbo/?github) 对应 [labx-07](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-07)
|
||||
* [《芋道 Spring Cloud Netflix 负载均衡 Ribbon 入门》](http://www.iocoder.cn/Spring-Cloud-Netflix/Ribbon/?github) 对应 [labx-02](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-02)
|
||||
* [《芋道 Spring Cloud 声明式调用 Feign 入门》](http://www.iocoder.cn/Spring-Cloud/Feign/?github) 对应 [labx-03](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-03)
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ spring:
|
||||
# Binding 配置项,对应 BindingProperties Map
|
||||
bindings:
|
||||
demo01-output:
|
||||
# destination: DEMO-TOPIC-01 # 目的地。这里使用 RocketMQ Topic
|
||||
destination: TOPIC_YUNAI_TEST # 目的地。这里使用 RocketMQ Topic
|
||||
content-type: application/json # 内容格式。这里使用 JSON
|
||||
# Spring Cloud Stream RocketMQ 配置项
|
||||
|
||||
15
labx-07/pom.xml
Normal file
15
labx-07/pom.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>labs-parent</artifactId>
|
||||
<groupId>cn.iocoder.springboot.labs</groupId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>labx-07</artifactId>
|
||||
|
||||
|
||||
</project>
|
||||
4
pom.xml
4
pom.xml
@@ -9,6 +9,7 @@
|
||||
<packaging>pom</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<modules>
|
||||
<!-- Spring Boot 示例 -->
|
||||
<module>lab-01</module>
|
||||
<module>lab-02</module>
|
||||
<module>lab-03</module>
|
||||
@@ -58,12 +59,15 @@
|
||||
<module>lab-47</module>
|
||||
<module>lab-48</module>
|
||||
<module>lab-49</module>
|
||||
<!-- Spring Cloud 示例 -->
|
||||
<module>labx-01</module>
|
||||
<module>labx-02</module>
|
||||
<module>labx-03</module>
|
||||
<module>labx-04</module>
|
||||
<module>labx-05</module>
|
||||
<module>labx-06</module>
|
||||
<module>labx-07</module>
|
||||
<!-- Dubbo 示例 -->
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user