1、微服务架构图
2、微服务划分图
3、项目前置要求
1、熟悉springboot框架
2、了解springcloud框架
3、熟悉git、maven
4、熟悉linux、Redis、docker基本操作
5、前端了解html、css、js、vue
6、熟练使用idea
4、搭建项目
1、码云创建项目
2、idea创建后端项目
商品服务、仓储服务、订单服务、优惠券服务、用户服务
共同:
1)、web、openfeign
2)、每一个服务,包名 com.ljs.gulimall.xxx(product/order/ware/coupon/member)
3)、模块名:gulimall-coupon
#创建微服务模块
这里选择custom避免由于网络问题超时无法创建springboot
1、商品服务:
引入必要依赖:
同理创建别的微服务
复制一个pom文件作为主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.ljs.gulimall</groupId>
<artifactId>gulimall</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>gulimall</name>
<description>谷粒商城</description>
<packaging>pom</packaging>
<modules>
<module>gulimall-product</module>
<module>gulimall-order</module>
<module>gulimall-coupon</module>
<module>gulimall-ware</module>
<module>gulimall-member</module>
</modules>
</project>
修改总项目ignore模板
.gitignore
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
**/mvnw.cmd
**/mvnw
**/.mvn
.idea
../target/
**/.gitignore
**/README.md
将所有需要提交的代码纳入版本控制
安装gitee插件