Maven

什么是Maven

maven是一个项目管理工具;它可以统一管理jar包,自动生成项目结构;在传统的Java开发中,我们往往要手动测试jar包的版本,并且自己手动配置项目的目录结构;如果使用maven,将方便很多
maven 3.6安装包:
链接:https://pan.baidu.com/s/1WlSkJA_Hz56Tbi_BNG-g8A?pwd=0000
提取码:0000

maven安装

解压后新建文件夹作为本地仓库
在这里插入图片描述
在这里插入图片描述

使用idea创建一个maven项目

在这里插入图片描述

项目结构

在这里插入图片描述

pom.xml文件

创建了maven项目后,会自动生成一个pom.xml文件;pom称为Project Object Model(项目对象模型);是Maven的核心配置文件, 它用于描述整个Maven项目,所以也称为Maven描述文件。
groupId、artifactId、version三个元素生成了一个Maven项目的基本坐标
在这里插入图片描述
对pom文件进行配置:
(1)groupId、artifactId、version三个元素生成了一个Maven项目的基本坐标

(2)dependencies:用于对jar的管理:将jar包放在仓库中进行管理

	   A、本地仓库:Maven的conf/settings.xml
	   
	   B、远程仓库(中央仓库):在网络上的Maven仓库
	   
	 Maven对jar包的查找过程:先在本地仓库中查找,若存在则将jar导入应用程序中;若在本地仓库中没有找到,则会到远程仓库中查找并下载到本地仓库,然后引用.

(3)properties:是用来定义一些配置属性的

(4)build:用于解释Maven的目录结构

<?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>
    
   
    <!--maven项目的基本坐标-->
    <groupId>org.example</groupId>
    <artifactId>Maven-pro</artifactId>
    <version>1.0-SNAPSHOT</version>
    
<!-- 是用来定义一些配置属性,代表当前jdk版本为11 -->
    <properties>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
    </properties>

<!--用于对jar的管理:将jar包放在仓库中进行管理-->
    <dependencies>
        <!-- 网址:https://mvnrepository.com/artifact/org.mybatis/mybatis -->
        <!--mybatis的jar包-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.6</version>
        </dependency>
        
        <!--mysql的jar包-->
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.23</version>
        </dependency>
        
        <!-- Lombok工具 -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.12</version>
            <scope>provided</scope>
        </dependency>

		<!--junit的jar包-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>RELEASE</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


<!--用于解释Maven的目录结构-->
    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                    <include>**/*.properties</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.xml</include>
                    <include>**/*.properties</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
    
</project>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值