Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
Yangkai.Shen f56236a966 | 4 years ago | |
---|---|---|
.. | ||
dubbo-common | 4 years ago | |
dubbo-consumer | 4 years ago | |
dubbo-provider | 4 years ago | |
.gitignore | 4 years ago | |
README.md | 4 years ago | |
pom.xml | 4 years ago |
此 demo 主要演示了 Spring Boot 如何集成 Dubbo,demo 分了3个module,分别为公共模块
spring-boot-demo-dubbo-common
、服务提供方spring-boot-demo-dubbo-provider
、服务调用方spring-boot-demo-dubbo-consumer
本例注册中心使用的是 zookeeper,作者编写本demo时,采用docker方式运行 zookeeper
下载镜像:docker pull wurstmeister/zookeeper
运行容器:docker run -d -p 2181:2181 -p 2888:2888 -p 2222:22 -p 3888:3888 --name zk wurstmeister/zookeeper
停止容器:docker stop zk
启动容器:docker start zk
spring-boot-demo-dubbo-provider
目录,运行 SpringBootDemoDubboProviderApplication.java
spring-boot-demo-dubbo-consumer
目录,运行 SpringBootDemoDubboConsumerApplication.java
<?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">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-demo-dubbo</artifactId>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>spring-boot-demo-dubbo-common</module>
<module>spring-boot-demo-dubbo-provider</module>
<module>spring-boot-demo-dubbo-consumer</module>
</modules>
<packaging>pom</packaging>
<name>spring-boot-demo-dubbo</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<dubbo.starter.version>2.0.0</dubbo.starter.version>
<zkclient.version>0.10</zkclient.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
一个用来深度学习并实战 spring boot 的项目,目前总共包含 66 个集成demo,已经完成 55 个。
Java SVG CSS JavaScript SQL other