使用eclipse创建maven web项目

  1. 打开Project Explorer视图,右击->New->Other...->Maven Project

使用eclipse创建maven web项目_第1张图片

 2.    Abstract id可以看做项目名称,打包类型可以选择jar或者war包,点finish

使用eclipse创建maven web项目_第2张图片

 3.    右击工程,properties->Project Facets,如图:

使用eclipse创建maven web项目_第3张图片

 

4.添加webapp下的META-INF和WEB-INF目录以及web.xml

使用eclipse创建maven web项目_第4张图片

5.在pom.xml中添加jar包引用

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com</groupId>
	<artifactId>myframe</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>war</packaging>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>3.0-alpha-1</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
</project>

 6.部署到tomcat

 

你可能感兴趣的:(eclipse,maven,Web)