1、父工程建立
1. 建立項目,選擇maven ,不選擇archetype模板java
2. 輸入 Name,Location,GroupId,ArtifactId,Versionmysql
3.建立後刪除src目錄spring
4.整理POMsql
- packaging 指定爲pom
- properties 中定義各組件版本常量
- dependencyManagement 中引用子模塊中用到的各組件,並指定版本
此處pom爲改系列文章要用到的,具體pom以下:apache
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.zhl.springcloud</groupId> <artifactId>SpringCloudReview</artifactId> <version>1.0-SNAPSHOT</version> <!--1. 表示爲POM總父工程--> <packaging>pom</packaging> <!--2. 統一管理jar包版本 --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <junit.version>4.12</junit.version> <log4j.version>1.2.17</log4j.version> <lombok.version>1.16.18</lombok.version> <mysql.version>5.1.47</mysql.version> <druid.version>1.1.16</druid.version> <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version> </properties> <!--3. 子模塊繼承以後,會鎖定版本+子modlue不用寫groupId和version --> <dependencyManagement> <dependencies> <!--spring boot 2.2.2--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.2.2.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <!--spring cloud Hoxton.SR1--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Hoxton.SR1</version> <type>pom</type> <scope>import</scope> </dependency> <!--spring cloud alibaba 2.1.0.RELEASE--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.1.0.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>${druid.version}</version> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>${mybatis.spring.boot.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <optional>true</optional> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> <addResources>true</addResources> </configuration> </plugin> </plugins> </build> </project>
5. Maven中的DependencyManagement和Dependencies區別mybatis
DependencyManagement
提供一種管理依賴版本號的方式,一般在一個組織或項目的最頂層的父POM中看到,使用pom.xml中的dependencyManagement元素能讓全部在子項目中引用一個依賴不用顯示的列出版本號。maven
Maven會沿着父子層次向上走,直到找到一個擁有dependencyManagement元素的項目,而後他就會使用這個dependencyManagement元素中指定的版本號。ide
這樣的好處就是:若是有多個子項目都引用同一個依賴,則能夠避免在每一個使用的子項目裏都聲明一個版本號,這樣當想升級或切換版本是就能夠直接在父項目裏修改。全部子項目都改變了版本號。
dependencyManagement裏只是聲明依賴,並不實現引入,所以子項目具體引用須要用的依賴。
若是子項目裏指定了版本號,則用子項目的版本。spring-boot
6. Maven 在發佈時跳過測試測試
二. IDEA 工程設置。
1 字符編碼
2 註解激活生效
3 Java編譯版本
4 FileType 過濾
此處增長了 *.idea;*.iml; 文件的過濾