Skip to content

Commit 1040a38

Browse files
authored
Merge pull request #5 from coderqianlq/dev
doc(修改readme):优化文档,添加博客跳转
2 parents 15e50ea + 58bb241 commit 1040a38

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55
Spring Cloud是一个基于Spring Boot实现的云应用开发工具,它为基于JVM的云应用开发中涉及的配置管理、服务发现、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话和集群状态管理等操作提供了一种简单的开发方式。
66

77
Spring Cloud 全家桶:
8-
- | Spring Cloud
9-
|---|---|
10-
服务注册中心 | Spring Cloud Netflix Eureka
11-
服务调用方式 | REST API
12-
服务网关 | Spring Cloud Netflix Zuul
13-
断路器 | Spring Cloud Netflix Hystrix
14-
分布式配置 | Spring Cloud Config
15-
服务跟踪 | Spring Cloud Sleuth
16-
消息总线 | Spring Cloud Bus
17-
数据流 | Spring Cloud Stream
18-
批量任务 | Spring Cloud Task
8+
9+
| - | Spring Cloud |
10+
| :---: | :---: |
11+
| 服务注册中心 | Spring Cloud Netflix Eureka |
12+
| 服务调用方式 | REST API |
13+
| 服务网关 | Spring Cloud Netflix Zuul |
14+
| 断路器 | Spring Cloud Netflix Hystrix |
15+
| 分布式配置 | Spring Cloud Config |
16+
| 服务跟踪 | Spring Cloud Sleuth |
17+
| 消息总线 | Spring Cloud Bus |
18+
| 数据流 | Spring Cloud Stream |
19+
| 批量任务 | Spring Cloud Task |
1920

2021
**2. 微服务架构**
2122

@@ -162,6 +163,6 @@ eureka.client.service-url.defaultZone=http://127.0.0.1:8761/eureka
162163
同时启动两个服务,再访问 http://localhost:8761/ 出现下图内容则表示服务注册成功:
163164
![](https://preview.ibb.co/kvyTu9/2018_09_29_4_53_47_2.png)
164165

165-
这样就基本完成了基础的Spring Cloud搭建。
166+
这样就基本完成了基础的Spring Cloud搭建。Spring Cloud其它组件的搭建的程可参考[我的博客](https://blog.csdn.net/weixin_36759405)
166167

167168

eureka-customer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

11-
<name>spring-customer</name>
11+
<name>eureka-customer</name>
1212
<description>Demo project for Spring Boot</description>
1313

1414
<parent>

eureka-customer/src/main/resources/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Properties>
77
<Property name="pattern">%d{yyyy-MM-dd HH:mm:ss} [Thread: %t] [ %-5p] %c{1}:%L - %m%n</Property>
88
<Property name="LOG_HOME">logs</Property>
9-
<Property name="project">spring-customer</Property>
9+
<Property name="project">eureka-customer</Property>
1010
</Properties>
1111
<Appenders>
1212
<Console name="Console" target="SYSTEM_OUT" follow="true">

eureka-order/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

11-
<name>spring-order</name>
11+
<name>eureka-order</name>
1212
<description>Demo project for Spring Boot</description>
1313

1414
<parent>

0 commit comments

Comments
 (0)