码迷,mamicode.com
首页 > 其他好文 > 详细

maven项目生成war包

时间:2016-09-29 17:42:26      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

配置 你的pom.xml文件,在你的overview视窗里 配置 packaging为 war 然后添加

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<warName>ROOT</warName>
<archiveClasses>true</archiveClasses>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>src\main\resources</directory>
<targetPath>WEB-INF\classes</targetPath>
<!-- the list has a default value of ** -->
<includes>
<include>**</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>


然后点击 pom.xml右键,run as 选择 install 或是 package
如果项目没问题,配置没问题
就会在项目的target 的目录里生成 war文件,

maven项目生成war包

标签:

原文地址:http://www.cnblogs.com/AmbitiousMice/p/5920498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!