Skip to content

Commit da821d6

Browse files
authored
Merge pull request #66 from antonbiluta/EnglishReadme
Added README in English
2 parents 13e901a + a075d0c commit da821d6

File tree

1 file changed

+159
-0
lines changed

1 file changed

+159
-0
lines changed

README-en.md

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
# zlt-microservices-platform
2+
3+
<p align="center">
4+
<img src="https://img.shields.io/badge/Version-5.5.0-critical" alt="Downloads"/>
5+
<img src="https://img.shields.io/badge/Spring%20Boot-2.5.14-blue" alt="Downloads"/>
6+
<img src="https://img.shields.io/badge/Spring%20Cloud-2020.0.6-blue" alt="Downloads"/>
7+
<img src="https://img.shields.io/badge/Spring%20Cloud%20Alibaba-2021.1-blue" alt="Downloads"/>
8+
<img src="https://img.shields.io/badge/Elasticsearch-7.x-brightgreen" alt="Downloads"/>
9+
<img src="https://img.shields.io/badge/Ant%20Design-pro-9cf" alt="Downloads"/>
10+
<a target="_blank" href='https://gitee.com/zlt2000/microservices-platform'>
11+
<img src='https://gitee.com/zlt2000/microservices-platform/badge/star.svg' alt='star'/>
12+
</a>
13+
<a target="_blank" href='https://github.com/zlt2000/microservices-platform'>
14+
<img src="https://img.shields.io/github/stars/zlt2000/microservices-platform.svg?style=social" alt="github star"/>
15+
</a>
16+
</p>
17+
18+
19+
20+
21+
22+
## If you find it helpful, please click "Star" in the upper right corner to support it. Thank you
23+
&nbsp;
24+
## 1. Overall Architecture Diagram
25+
![mark](https://gitee.com/zlt2000/images/raw/master/springcloud%E5%BE%AE%E6%9C%8D%E5%8A%A1%E6%9E%B6%E6%9E%84%E5%9B%BE.jpg)
26+
27+
&nbsp;
28+
## 2. Features
29+
![mark](https://gitee.com/zlt2000/images/raw/master/ZLT-MP%E5%BE%AE%E6%9C%8D%E5%8A%A1%E5%B9%B3%E5%8F%B0%E5%8A%9F%E8%83%BD%E5%9B%BE.jpg)
30+
31+
&nbsp;
32+
## 3. Project Introduction
33+
* **Technical exchange group**
34+
<table>
35+
<tr>
36+
<td><center><strong><a href="https://qm.qq.com/cgi-bin/qm/qr?k=HntAHTirZwCEjF8PQpjDYkw37Zx5rJg8&jump_from=webapi" target="_blank">Exchange three groups</a></strong></center></td>
37+
</tr>
38+
<tr>
39+
<td><a href="https://qm.qq.com/cgi-bin/qm/qr?k=HntAHTirZwCEjF8PQpjDYkw37Zx5rJg8&jump_from=webapi" target="_blank"><img width=250px height=300px alt="Exchange three groups" src="http://qiniu.zlt2000.cn/blog/20210616/htVdgkFMohAm.png?imageslim"/></a></td>
40+
</tr>
41+
</table>
42+
43+
44+
* **Detailed online documentation**https://www.kancloud.cn/zlt2000/microservices-platform/919418
45+
* **[Project update log](https://www.kancloud.cn/zlt2000/microservices-platform/936235)**
46+
* **[Documentation Update Log](https://www.kancloud.cn/zlt2000/microservices-platform/936236)**
47+
* **Demo**[http://zlt2000.cn](http://zlt2000.cn/)
48+
* Account:admin/admin
49+
* APM monitoring: admin/admin
50+
* Grafana:zlt/zlt123
51+
* Task managment:admin/123456
52+
* **The demonstration environment has a full range of monitoring examples: log system + APM system + GPE system**
53+
* Gitee address:https://gitee.com/zlt2000/microservices-platform
54+
* Github address:https://github.com/zlt2000/microservices-platform
55+
* Enterprise-level microservice architecture with front-end and back-end separation
56+
* It is mainly aimed at solving common problems in microservice and business development **non-functional requirements**
57+
* Deep customization of `Spring Security` truly implements a solution for stateless unified authority authentication based on `RBAC`, `jwt` and `oauth2`
58+
* Provide application management to facilitate third-party system access, **Support multi-tenancy (application isolation)**
59+
* Introduce the idea of componentization to achieve high cohesion, low coupling and high configurability
60+
* Pay attention to code specifications, strictly control package dependencies, and each project basically has minimum dependencies
61+
* Ideal for learning and enterprise use
62+
>Refactored from the open source project OCP&cp:https://gitee.com/owenwangwen/open-capacity-platform
63+
64+
&nbsp;
65+
## 4. 模块说明
66+
```lua
67+
central-platform -- parent project, public dependencies
68+
│ ├─zlt-business -- Business module first-level engineering
69+
│ │ ├─user-center -- User Center[7000]
70+
│ │ ├─file-center -- document center[5000]
71+
│ │ ├─code-generator -- Code generator[7300]
72+
│ │ ├─search-center -- search Center
73+
│ │ │ ├─search-client -- Search Center client
74+
│ │ │ ├─search-server -- Search Center Server[7100]
75+
│ │─zlt-commons -- General tool first-level engineering
76+
│ │ ├─zlt-auth-client-spring-boot-starter -- Encapsulate the general operation logic of spring security client
77+
│ │ ├─zlt-common-core -- Encapsulate common operation logic
78+
│ │ ├─zlt-common-spring-boot-starter -- Encapsulate common operation logic
79+
│ │ ├─zlt-db-spring-boot-starter -- Encapsulate the general operation logic of the database
80+
│ │ ├─zlt-log-spring-boot-starter -- Encapsulate log general operation logic
81+
│ │ ├─zlt-redis-spring-boot-starter -- Encapsulate Redis general operation logic
82+
│ │ ├─zlt-loadbalancer-spring-boot-starter -- Encapsulate the general operation logic of Loadbalancer and Feign
83+
│ │ ├─zlt-sentinel-spring-boot-starter -- Encapsulate Sentinel's general operation logic
84+
│ │ ├─zlt-swagger2-spring-boot-starter -- Encapsulate Swagger general operation logic
85+
│ │ ├─zlt-elasticsearch-spring-boot-starter -- Encapsulate Elasticsearch general operation logic
86+
│ │ ├─zlt-oss-spring-boot-starter -- Encapsulate object storage general operation logic
87+
│ │ ├─zlt-zookeeper-spring-boot-starter -- Encapsulate Zookeeper general operation logic
88+
│ ├─zlt-config -- configuration center
89+
│ ├─zlt-doc -- project documentation
90+
│ ├─zlt-gateway -- api gateway first level engineering
91+
│ │ ├─sc-gateway -- spring-cloud-gateway[9900]
92+
│ ├─zlt-monitor -- Monitor first-class engineering
93+
│ │ ├─sc-admin -- application monitoring[6500]
94+
│ │ ├─log-center -- log center[7200]
95+
│ ├─zlt-uaa -- spring-security authentication center[8000]
96+
│ ├─zlt-register -- Registration Center Nacos[8848]
97+
│ ├─zlt-web -- Front-end first-level engineering
98+
│ │ ├─layui-web -- layui frontend[8066]
99+
│ │ ├─react-web -- react front end[8066]
100+
│ ├─zlt-demo -- demo level one project
101+
│ │ ├─txlcn-demo -- txlcn distributed transaction demo
102+
│ │ ├─seata-demo -- seata distributed transaction demo
103+
│ │ ├─sharding-jdbc-demo -- sharding-jdbc database sub-table demo
104+
│ │ ├─rocketmq-demo -- rocketmq and mq transaction demo
105+
│ │ ├─sso-demo -- single sign-on demo
106+
```
107+
108+
<table>
109+
<tr>
110+
<td><a target="_blank" href="https://www.aliyun.com/minisite/goods?userCode=dickv1kw&share_source=copy_link"><img width="460px" height="177px" alt="Ali Cloud" src="https://gitee.com/zlt2000/images/raw/master/aly.jpg"/></a></td>
111+
<td><a target="_blank" href="https://cloud.tencent.com/act/cps/redirect?redirect=1074&cps_key=5516bbd5876cd224d90bd41d53d3f7fe&from=console"><img width="460px" height="177px" alt="Tencent Cloud" src="https://gitee.com/zlt2000/images/raw/master/txy.jpg"/></a></td>
112+
</tr>
113+
</table>
114+
115+
116+
## 5. Exchange feedback
117+
* Have a look first [F&Q](https://www.kancloud.cn/zlt2000/microservices-platform/981382) Is there any relevant answer in
118+
* Welcome to submit `ISSUS`, please write clearly the specific reason of the problem, reproduction steps and environment (context)
119+
* Please enter the group for project/microservice communication:
120+
* group: [250883130(已满)](https://shang.qq.com/wpa/qunwpa?idkey=17544199255998bda0d938fb72b08d076c40c52c9904520b76eb5eb0585da71e)
121+
* Second group:[1041797659(已满)](https://shang.qq.com/wpa/qunwpa?idkey=41988facbc02f678942a7ee7ae03122f2ef0a10c948b3d07319f070bfb0d3a98)
122+
* Three groups:[512637767](https://qm.qq.com/cgi-bin/qm/qr?k=HntAHTirZwCEjF8PQpjDYkw37Zx5rJg8&jump_from=webapi)
123+
* personal blog:[https://zlt2000.gitee.io](https://zlt2000.gitee.io)
124+
* Personal email:[email protected]
125+
* Personal public number: [陶陶技术笔记](http://qiniu.zlt2000.cn/blog/20190902/M56cWjw7uNsc.png?imageslim)
126+
* GitChat:[https://gitbook.cn/gitchat/author/5b2362320398d50d7b7ab29e](https://gitbook.cn/gitchat/author/5b2362320398d50d7b7ab29e)
127+
128+
&nbsp;
129+
## 6. Screenshot (click to enlarge the preview)
130+
<table>
131+
<tr>
132+
<td><img alt="front page" src="https://gitee.com/zlt2000/images/raw/master/%E9%A6%96%E9%A1%B5.png"/></td>
133+
<td><img alt="user search" src="https://gitee.com/zlt2000/images/raw/master/%E7%94%A8%E6%88%B7%E6%90%9C%E7%B4%A2.png"/></td>
134+
</tr>
135+
<tr>
136+
<td><img alt="log system" src="https://gitee.com/zlt2000/images/raw/master/%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F.png"/></td>
137+
<td><img alt="log link" src="https://gitee.com/zlt2000/images/raw/master/%E6%97%A5%E5%BF%97%E9%93%BE%E8%B7%AF.png"/></td>
138+
</tr>
139+
<tr>
140+
<td><img alt="server_metrics" src="https://gitee.com/zlt2000/images/raw/master/server_metrics.png"/></td>
141+
<td><img alt="application_metrics" src="https://gitee.com/zlt2000/images/raw/master/application_metrics.png"/></td>
142+
</tr>
143+
<tr>
144+
<td><img alt="skywalking Home.png" src="https://gitee.com/zlt2000/images/raw/master/skywalking%E9%A6%96%E9%A1%B5.png"/></td>
145+
<td><img alt="skywalking application topology diagram" src="https://gitee.com/zlt2000/images/raw/master/skywalking%E5%BA%94%E7%94%A8%E6%8B%93%E6%89%91%E5%9B%BE.png"/></td>
146+
</tr>
147+
<tr>
148+
<td><img alt="elk" src="https://gitee.com/zlt2000/images/raw/master/elk.png"/></td>
149+
<td><img alt="task center" src="https://gitee.com/zlt2000/images/raw/master/%E4%BB%BB%E5%8A%A1%E4%B8%AD%E5%BF%83.png"/></td>
150+
</tr>
151+
<tr>
152+
<td><img alt="Log Center 02" src="https://gitee.com/zlt2000/images/raw/master/%E6%97%A5%E5%BF%97%E4%B8%AD%E5%BF%8302.png"/></td>
153+
<td><img alt="slow query sql" src="https://gitee.com/zlt2000/images/raw/master/%E6%85%A2%E6%9F%A5%E8%AF%A2sql.png"/></td>
154+
</tr>
155+
<tr>
156+
<td><img alt="nacos-discovery" src="https://gitee.com/zlt2000/images/raw/master/nacos-discovery.png"/></td>
157+
<td><img alt="Application Throughput Monitoring" src="https://gitee.com/zlt2000/images/raw/master/%E5%BA%94%E7%94%A8%E5%90%9E%E5%90%90%E9%87%8F%E7%9B%91%E6%8E%A7.png"/></td>
158+
</tr>
159+
</table>

0 commit comments

Comments
 (0)