1.配置中央仓库(maven的配置和jdk配置方式一样)
IDEA中构建maven项目_其他
IDEA中构建maven项目_其他_02
1.测试maven仓库配置是否成功,在cmd中输入mvn -versionIDEA中构建maven项目_maven_03
2.在中央仓库中建立本地仓库(用于存储下载的jar包)IDEA中构建maven项目_tomcat_04
3.修改apache-maven-3.3.9–>conf–>settings文件IDEA中构建maven项目_apache_05IDEA中构建maven项目_tomcat_06
4.打开idea,创建maven项目
IDEA中构建maven项目_tomcat_07
IDEA中构建maven项目_maven_08IDEA中构建maven项目_其他_09IDEA中构建maven项目_maven_10IDEA中构建maven项目_apache_11IDEA中构建maven项目_tomcat_12
5.项目成功,项目结构
IDEA中构建maven项目_tomcat_13
注意:创建成功的项目目录结构所有缺失,我们需要手动创建完成。IDEA中构建maven项目_tomcat_14
IDEA中构建maven项目_maven_15

6.启动项目,直接放到Tomcat中
IDEA中构建maven项目_tomcat_16
7.也可以在Pom.xml加tomcat插件

 <plugin>
          <groupId>org.apache.tomcat.maven</groupId>
          <artifactId>tomcat7-maven-plugin</artifactId>
          <version>2.2</version>
          <configuration>
            <port>8080</port> <!-- 访问端口-->
            <path>/</path>    <!-- 访问路径-->
          </configuration>
  </plugin>

8.启动项目

IDEA中构建maven项目_maven_17