Skip to content

Commit

Permalink
更新README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdaiscott committed Sep 13, 2024
1 parent c400ec8 commit 58c0882
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 81 deletions.
3 changes: 2 additions & 1 deletion README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Technical Architecture:

- Persistence layer framework: MybatisPlus 3.5.3.2

- Report tool: JimuReport 1.7.6
- Report tool: JimuReport 1.8.1

- Security framework: Apache Shiro 1.12.0, Jwt 3.11.0

Expand Down Expand Up @@ -229,6 +229,7 @@ Technical Architecture:
| MariaDB ||
| 达梦 ||
| 人大金仓 ||
| TiDB ||


## Microservice solutions
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Jeecg-Boot低代码开发平台,可以应用在任何J2EE项目的开发中,
- 基础框架:Spring Boot 2.7.18
- 微服务框架: Spring Cloud Alibaba 2021.0.1.0
- 持久层框架:MybatisPlus 3.5.3.2
- 报表工具: JimuReport 1.7.6
- 报表工具: JimuReport 1.8.1
- 安全框架:Apache Shiro 1.12.0,Jwt 3.11.0
- 微服务技术栈:Spring Cloud Alibaba、Nacos、Gateway、Sentinel、Skywalking
- 数据库连接池:阿里巴巴Druid 1.1.22
Expand All @@ -87,7 +87,7 @@ Jeecg-Boot低代码开发平台,可以应用在任何J2EE项目的开发中,
#### 前端

- 前端IDE建议:WebStorm、Vscode
- 采用 Vue3.0+TypeScript+Vite+Ant-Design-Vue等新技术方案,包括二次封装组件、utils、hooks、动态菜单、权限校验、按钮级别权限控制等功能
- 采用 Vue3.0+TypeScript+Vite5+Ant-Design-Vue等新技术方案,包括二次封装组件、utils、hooks、动态菜单、权限校验、按钮级别权限控制等功能
- 最新技术栈:Vue3.0 + TypeScript + Vite5 + ant-design-vue4 + pinia + echarts + unocss + vxe-table + qiankun + es6
- 依赖管理:node、npm、pnpm

Expand All @@ -109,9 +109,10 @@ Jeecg-Boot低代码开发平台,可以应用在任何J2EE项目的开发中,
| Sqlserver2017 ||
| PostgreSQL ||
| MariaDB ||
| MariaDB ||
| 达梦 ||
| 人大金仓 ||

| TiDB ||


## 微服务解决方案
Expand Down
3 changes: 2 additions & 1 deletion jeecg-boot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ JeecgBoot 是一款基于代码生成器的`低代码开发平台`!前后端
- 基础框架:Spring Boot 2.7.18
- 微服务框架: Spring Cloud Alibaba 2021.0.1.0
- 持久层框架:MybatisPlus 3.5.3.2
- 报表工具: JimuReport 1.7.6
- 报表工具: JimuReport 1.8.1
- 安全框架:Apache Shiro 1.12.0,Jwt 3.11.0
- 微服务技术栈:Spring Cloud Alibaba、Nacos、Gateway、Sentinel、Skywalking
- 数据库连接池:阿里巴巴Druid 1.1.22
Expand Down Expand Up @@ -97,6 +97,7 @@ JeecgBoot 是一款基于代码生成器的`低代码开发平台`!前后端
| MariaDB ||
| 达梦 ||
| 人大金仓 ||
| TiDB ||



Expand Down
76 changes: 0 additions & 76 deletions jeecgboot-vue3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,80 +78,6 @@ pnpm dev
pnpm build
```


## Docker镜像启动前端(单体模式)

- host设置

>注意: 需要把`127.0.0.1`替换成真实IP 比如`192.`开头,不然后端不通。
```bash
127.0.0.1 jeecg-boot-system
127.0.0.1 jeecg-boot-gateway
```


- 下载项目

```bash
git clone https://github.com/jeecgboot/JeecgBoot.git

cd JeecgBoot/jeecgboot-vue3
```

- 配置接口域名 `.env.production`

```bash
VITE_GLOB_API_URL=/jeecgboot
VITE_GLOB_DOMAIN_URL=http://jeecg-boot-system:8080/jeecg-boot
```
后台单体启动 [见此文档](https://help.jeecg.com/java/setup/docker/up.html)

- 编译项目

```bash
pnpm install

pnpm build
```

- 启动容器
```bash
docker build -t jeecgboot-vue3 .
docker run --name jeecgboot-vue3-nginx -p 80:80 -d jeecgboot-vue3
```

- 访问前台

http://localhost

## Docker镜像启动前端(微服务模式)
> 这里只写与单体的区别步骤
- 区别1. 修改后台域名
.env.production

```bash
VITE_GLOB_API_URL=/jeecgboot
VITE_GLOB_DOMAIN_URL=http://jeecg-boot-gateway:9999
```

后台微服务启动 [见此文档](https://help.jeecg.com/java/springcloud/docker.html)

- 区别2. 修改Dockerfile文件

```bash
- 把`http://jeecg-boot-system:8080/jeecg-boot`替换成 `http://jeecg-boot-gateway:9999`
- 把`jeecg-boot-system`替换成 `jeecg-boot-gateway`
```

- 其他与单体模式一样

```bash
镜像需要重现构建,最好把单体的镜像删掉,重新构建docker镜像。
```


## 入门必备

本项目需要一定前端基础知识,请确保掌握 Vue 的基础知识,以便能处理一些常见的问题。 建议在开发前先学一下以下内容,提前了解和学习这些知识,会对项目理解非常有帮助:
Expand All @@ -166,9 +92,7 @@ VITE_GLOB_DOMAIN_URL=http://jeecg-boot-gateway:9999
* [Vitejs](https://cn.vitejs.dev/guide/)
* [Pinia(vuex替代方案)](https://pinia.esm.dev/introduction.html)
* [Vue-RFCS](https://github.com/vuejs/rfcs)
* [Vue2 迁移到 3](https://v3.vuejs.org/guide/migration/introduction.html)
* [vxetable文档](https://vxetable.cn)
* [~~WindiCss~~](https://windicss.netlify.app/)


## 浏览器支持
Expand Down

0 comments on commit 58c0882

Please sign in to comment.