[文档修改](master): 更新了文档

更新了文档
master
土豆兄弟 2 years ago
parent 58c7154bda
commit f68eca792d

@ -0,0 +1,15 @@
# 介绍
- 自己的微服务项目, 整合所有的微服务技术来解决一业务问题
## 项目架构
- 广告系统
- 电商系统
- IM系统
- 活动系统
- SCRM系统
- 视频系统
- 撮合系统
- 支付系统
- 搜索系统
- 办公系统
-

@ -0,0 +1,46 @@
### Example user template template
### Example user template
# IntelliJ project files
.idea
*.iml
out
gen
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
.mvn/wrapper/maven-wrapper.jar
### Java template
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

@ -0,0 +1,82 @@
# SpringCloud
## 1. 概念综述
- 参考: https://github.com/alibaba/spring-cloud-alibaba/wiki/
- 版本选择
- 开源组件
- Nacos Config
- Nacos Discovery
- Sentinel
- RocketMQ
- Dubbo Spring Cloud
- 商业化组件
- OSS
- SchedulerX
- SMS
- Example
- Sentinel
- Nacos Config
- Nacos Discovery
- RocketMQ
- OSS
- SMS
- Dubbo Spring Cloud
- 视频: https://coding.imooc.com/class/chapter/358.html#Anchor
-
## 2. 服务发现-Nacos
## 3. 实现负载均衡-Ribbon
## 4. 声明式HTTP客户端-Feign
## 5. 服务容错-Sentinel
## 6. 消息驱动的微服务-Spring Cloud Alibaba RocketMQ
## 7. API网关-Spring Cloud Gateway
## 8. 微服务的用户认证与授权
## 9. 配置管理-Nacos
## 10. 调用链监控-Sleuth
## 11. 多维度微服务监控
## 12. 完美融合异构微服务
## 13. Spring Cloud Alibaba升级
## 14. SpringBoot Admin 微服务应用监控
## 15. SpringCloud Sleuth + Zipkin分布式日志追踪
## 16. 微服务通信 Ribbon + OpenFeign
## 17. SpringCloud Netflix Hystrix 实现微服务容错
## 18. Seata分布式事务解决方案
## 19. 基于 SpringCloud Alibaba Sentinel 实现网关动态限流
## 20. 微服务工程部署与整体可用性验证

@ -0,0 +1,22 @@
<?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>dev-protocol</artifactId>
<groupId>org.example</groupId>
<version>1.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<!-- 本项目配置 -->
<modelVersion>4.0.0</modelVersion>
<artifactId>dev-protocol-springcloud-alibaba</artifactId>
<version>1.0.0-RELEASE</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>

@ -37,6 +37,7 @@
<module>mq/rocketmq/springboot-rocketmq</module>
<module>dev-protocol-springcloud</module>
<module>dev-protocol-springcloud/dev-protocol-springcloud-stream</module>
<module>dev-protocol-springcloud/dev-protocol-springcloud-alibaba</module>
<module>longpolling/demo/demo2/dev-protocol-disruptor-demo</module>
<module>longpolling/netty/better-netty</module>
<module>longpolling/demo/demo3/dev-protocol-netty-client</module>

Loading…
Cancel
Save