码云创建好仓库,IDEA 中导入仓库作为开发环境
项目结构初始化
创建 gulimall 的商品服务模块,使用 springboot 初始化向导
创建后项目结构图
父工程 pom 文件
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.atguigu.gulimall</groupId>
<artifactId>gulimall</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>gulimall</name>
<description>聚合服务</description>
<packaging>pom</packaging>
<modules>
<module>gulimall-coupon</module>
<module>gulimall-member</module>
<module>gulimall-order</module>
<module>gulimall-product</module>
<module>gulimall-ware</module>
</modules>
</project>
将总服务 pom 文件添加进来
修改总项目 .gitignore 的模板,忽略掉和代码无关的
**/mvnw
**/mvnw.cmd
**/.mvn
**/target/
.idea
**/.gitignore
选中添加到版本控制
安装 gitee 插件,就可以成功提交到码云
数据库初始化
开启虚拟机,在安装 vagrant 目录带 Vagrantfile 的目录下 cmd
vagrant up
vagrant ssh
查看所有的容器
设置 mysql 和 redis 开机自启
重启虚拟机后,使用 SQLyong 连接,创建数据库,同理创建其他的数据库
后台管理脚手架
将人人开源的 renren-fast 和 renren - fast -vue 克隆到桌面
将 renren-fast 拷贝到工程中并添加模块
创建数据库,将 renren-fast 里面的 sql 文件拷贝下来并更改 IDEA 中数据库配置文件
运行 renren-fast 项目,地址栏输入 localhost:8080/renren-fast
调试前端项目,下载node并配置淘宝镜像然后初始化项目
npm install
运行项目
npm run dev
至此,前后端联调结束,然后再去码云下载 renren-generator 逆向生成代码还是之前的操作
创建公共模块 gulimall-common,然后在其它模块中引入
缺什么依赖补什么依赖,把 renren-fast 中的工具类和 xss 包引入进来
配置文件
# 配置 数据源
spring:
datasource:
username: root
password: root
url: jdbc:mysql://192.168.56.10:3306/gulimall_sms
driver-class-name: com.mysql.cj.jdbc.Driver
# 配置 mybatisplus
mybatis-plus:
mapper-locations: classpath:/mapper/**/*.xml
global-config:
db-config:
id-type: auto # 主键全局自增
server:
port: 7000
在这里踩了一个坑,我这个 springcloud 和 springboot 的版本没有对上,启动程序就报错,百度查了一下版本对应:https://www.cnblogs.com/javastack/p/14183634.html
代码生成器把所有代码生成出来,填写 yml 配置文件