下面是使用 Eclipse 来创建一个Maven Web项目的说明。这是相当简单的。
现在让我们开始吧!
1: 启动 Eclipse, 点击 File->New->Other
2: 在弹出的新建向导,向下滚动并选择 Maven->Maven Project, 点击 Next
3: 在上面的屏幕上,保留 ‘Use default workspace location’ 选择创建这个项目在目前的工作空间。点击 Next。 向下滚动,Artifact Id 选择选项为 maven-archetype-webapp.
4: 点击 Next. 提供 Group Id, Artifact Id & version. 这些参数使您的项目可交付成果(jar/war/ear …) 在存储库中的唯一标识。 点击 Finish. 刷新您的项目。
5: 您的项目结构应如下图所示。
6: 最后,根据你的项目需要更新您的pom.xml(添加依赖,简介,插件,库,输出格式等)
下面是我们的项目默认生成的pom.xml。
<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 "> <modelVersion>4.0.0</modelVersion> <groupId>com.yiibai</groupId> <artifactId>SampleMavenWebProject</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>SampleMavenWebProject Maven Webapp</name> <url></url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>SampleMavenWebProject</finalName> </build> </project>依赖部分指的是你的项目在回复库。这些库被发现在不同的 maven资源库 。
例如,如果你的代码将使用Spring框架和测试用例依赖于TestNG,而不是JUnit,pom.xml将包括依赖于Spring和TestNG象下面这样:
<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 "> <modelVersion>4.0.0</modelVersion> <groupId>com.yiibai</groupId> <artifactId>SampleMavenWebProject</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>SampleMavenWebProject Maven Webapp</name> <url></url> <properties> <springframework.version>4.0.5.RELEASE</springframework.version> <testng.version>6.8.8</testng.version> </properties> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> </dependency> </dependencies> <build> <finalName>SampleMavenWebProject</finalName> </build> </project> 如何运行这个Web项目?右键项目名称,在弹出的选项中选择 Run As => Maven install,然后 Eclise 会下载并安装相关依赖包。在等待一段时间后,构建成功的结果如下:
(注:如果失败,请自己查看失败提示原因)
接下来,我们再一次构建并发布,同样右键项目名称,在弹出的选项中选择 Run As => Maven build,这时会弹出一个对话框如下:
选择“Select..."在弹出的框中,再选择:
最后,选择:
就这样,完成!