赞
踩
方便的依赖管理
工程所需要的依赖,只需要坐标即可。
统一的项目结构

标准的构建流程
清理,编译,打包,安装,部署......
maven是管理和构建项目的工具。
本地仓库
先从本地仓库引用jar包。
中央仓库
本地没有,则从中央仓库下载。
私服
国内搭建的服务平台。
一般三部分组成。
g
groupId 组织名。
a
artifactId 工程名。
v
version 版本号。
父类pom.xml
- <?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.itheima</groupId>
- <artifactId>tlias-pojo</artifactId>
- <version>1.0-SNAPSHOT</version>
-
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <!--引入父工程依赖-->
- <parent>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../tlias-parent/pom.xml</relativePath>
- </parent>
-
- <dependencies>
- <!--lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
-
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>

子类pom.xml文件
- <?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>
- <!--依赖引入父工程-->
- <parent>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../tlias-parent/pom.xml</relativePath>
- </parent>
-
- <groupId>com.itheima</groupId>
- <artifactId>tlias-web-management</artifactId>
- <version>0.0.1-SNAPSHOT</version>
-
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <dependencies>
-
- <!--引入父类的依赖,就可以使用父类的配置,以及父类的代码-->
- <!--引入pojo依赖-->
- <dependency>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-pojo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
-
- <!--引入utils-->
- <dependency>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-utils</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
-
- <!--web起步依赖-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <!--mybatis起步依赖-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.2.2</version>
- </dependency>
-
- <!--mysql驱动-->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <scope>runtime</scope>
- </dependency>
-
- <!--springboot单元测试-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!--PageHelper分页插件-->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.4.2</version>
- </dependency>
-
- <!--fastJSON-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.76</version>
- </dependency>
-
- <!--AOP-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
-
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>

父工程需要引入springboot官方依赖
父类pom.xml
- <?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.itheima</groupId>
- <artifactId>tlias-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <!--父工程 打包方式pom-->
- <packaging>pom</packaging>
-
- <!--父工程指向的父依赖springboot官方版本依赖-->
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.5</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
-
- <!--聚合其他模块 指定要聚合的模块有哪些-->
- <modules>
- <module>../tlias-pojo</module>
- <module>../tlias-utils</module>
- <module>../tlias-web-management</module>
- </modules>
-
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-
- <!--版本统一控制-->
- <jwt.version>0.9.1</jwt.version>
- <lombok.version>1.18.30</lombok.version>
- </properties>
-
- <!--在这里引入依赖,父类就会下载依赖-->
- <dependencies>
-
- </dependencies>
-
- <!--管理子模块依赖的版本号,但是不会下载依赖-->
- <dependencyManagement>
- <dependencies>
- <!--lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <!--JWT令牌-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${jwt.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- </project>

子类pom.xml
- <?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>
- <!--依赖引入父工程-->
- <parent>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../tlias-parent/pom.xml</relativePath>
- </parent>
-
- <groupId>com.itheima</groupId>
- <artifactId>tlias-web-management</artifactId>
- <version>0.0.1-SNAPSHOT</version>
-
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <dependencies>
-
- <!--引入pojo依赖-->
- <dependency>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-pojo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
-
- <!--引入utils-->
- <dependency>
- <groupId>com.itheima</groupId>
- <artifactId>tlias-utils</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
-
- <!--web起步依赖-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <!--mybatis起步依赖-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.2.2</version>
- </dependency>
-
- <!--mysql驱动-->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <scope>runtime</scope>
- </dependency>
-
- <!--springboot单元测试-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!--PageHelper分页插件-->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.4.2</version>
- </dependency>
-
- <!--fastJSON-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.76</version>
- </dependency>
-
- <!--AOP-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
-
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。