1、该工具的作用:
- 在javaweb开发中,需要使用大量的jar包,该工具就可以自动帮我们到如何配置jar包。
2、下载和安装
- https://maven.apache.org/
3、配置环境变量
在我们的系统环境变量里面配置:
- M2_HOME:maven目录下的bin目录
- MAVEN_HOME:maven的目录
- 在系统环境变量path中配置:%MAVEN_HOME%\bin
配置成功:
4、配置阿里云镜像
- 镜像(mirrors):方便下载使用。Maven是国外的,国内有墙,使得我们访问外网会非常慢。
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
5、本地仓库
建立一个本地仓库:localRepository
<localRepository>D:\JAVA\apache-maven-3.6.3\maven-repo</localRepository>
6、在IDEA中创建mavenweb项目
1、操作流程
2、idea中maven的设置
注意:每次创建好maven项目后,我们需要手动修改以下,或者idea系统设置一下
3、项目的设置
7、在idea中标记文件夹功能
8、在idea中配置Tomcat
解决警告问题:
必须的配置:为什么会有这个问题?因为我们访问一个网站,需要指定一个文件夹的名字。
9、idea中maven侧边栏组成
10、pom文件
pom.xml文件是maven的核心配置文件
maven由于它的约定大于配置,我们之后可能遇到我们写的配置文件,无法被导出或者生效的问题,解决方案:
<!--在build中配置resources,来防止我们资源导出失败的问题-->
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
11、maven默认web项目中的web.xml版本问题
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0"
metadata-complete="true">
<!--web.xml中是配置我们web的核心应用-->
</web-app>