IDEA创建maven web项目

时间:2021-10-24 20:00:58

1、新建modules

IDEA创建maven web项目

2、选择maven项目,直接next

IDEA创建maven web项目

3、填写GroupId、ArtifactId信息

IDEA创建maven web项目

4、确认信息

IDEA创建maven web项目

5、点击finish,创建完成,目录如下

IDEA创建maven web项目

6、转为web项目

IDEA创建maven web项目

7、勾选Web Application

IDEA创建maven web项目

8、生产maven web项目、结构如下

IDEA创建maven web项目

9、配置Tomcat

IDEA创建maven web项目

10、选择tomcat server

IDEA创建maven web项目

11、deploy中添加项目

IDEA创建maven web项目

12、运行Tomcat,即可验证创建是否成功

IDEA创建maven web项目

13、开发完毕后,想要打为war包形式,pom.xml配置如下:

<packaging>war</packaging>
<build>
<!-- 生成的包名称 -->
<finalName>easyMock</finalName>
<plugins>
<!--下面是将应用打包发布需要增加的插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<!--制定web.xml文件路径-->
<!-- <configuration>
<webXml>web\WEB-INF\web.xml</webXml>
</configuration>-->
<configuration>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory,maven默认的web目录是WebContent-->
<directory>web</directory>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
14、然后右键项目-Open Module Settings,配置Artifacts

IDEA创建maven web项目

15、选中pom.xml,命令行输入mvn package,项目target目录下即会生产构建产物

IDEA创建maven web项目

16、测试war包:打开Tomcat配置,在Deployment下选中External Source,选中target下的war包,运行Tomcat即可