在gitee上初始化仓库

在这里插入图片描述

利用idea快速想到创建项目

1.
新建模块
在这里插入图片描述
选择微服务项目需要的两个 web openfeign
在这里插入图片描述

1.
创建模块时
每个服务的包名的组织名相同

1.
编写一个整合pom

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.jhj.gulimall</groupId>
<artifactId>gulimall</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>gulimall</name>
<description>Demo project for Spring Boot</description>
<packaging>pom</packaging>
<modules>
<module>gulimall-ware</module>
<module>gulimall-coupon</module>
<module>gulimall-member</module>
<module>gulimall-order</module>
<module>gulimall-product</module>
</modules>
</project>

点击右边maven讲pom文件添加

  1. 编写.gitignore忽略提交文件 利用控制台version control(git)
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    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
    **/mvnw.cmd

    **/.mvn
    **/target/

    .idea

    **/.gitignore

然后在控制台 纳入版本控制在这里插入图片描述
然后再利用 git进行提交 拉推操作

作者声明

1
如有问题,欢迎指正!