This commit is contained in:
wu 2024-11-18 07:25:42 +08:00
parent deda054395
commit 1138d759ec

View File

@ -3,20 +3,34 @@
基于开源项目 https://github.com/rocboss/paopao-ce , 使用spring boot完成后端服务程序。 基于开源项目 https://github.com/rocboss/paopao-ce , 使用spring boot完成后端服务程序。
### 7.1 项目准备 ### 7.1 项目准备
#### 7.1.1 Git仓库 #### 7.1.1 Git仓库
在http://123.249.84.124:8066/ 注册账号
创建仓库 paopao
#### 7.1.2 初始化spring boot项目 #### 7.1.2 初始化spring boot项目
https://start.spring.io/ 创建项目
#### 7.1.3 gradle配置 #### 7.1.3 gradle配置
国内源配置
```groovy
repositories {
mavenLocal()
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/public' }
mavenCentral()
}
```
#### 7.1.4 ui部署 #### 7.1.4 ui部署
nginx中部署 [paopao-web-ui.zip](../examples/chapter07/paopao-web-ui.zip)
### 7.2 用户注册功能开发 ### 7.2 用户注册功能开发