(1)创建maven项目,选择web骨架。
(2)填写项目名
(3)选中项目/ alt+enter / Project Facets / 点Convert to faceted form
(4)勾选Dynamic后,点击Further Configuration【如过servlet是2.5版本的,请看本章步骤(9)】
(5)将Content directory写成 src/main/webapp
(6)接下来修改web.xml的版本。默认版本是2.3,这里我改成3.0
(7)复制以下代码替换掉老的,如下图
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>webw</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
(8)报错如下:意思是编译器版本不兼容
复制以下代码到pom.xml中,如下图
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
(9)修改Dynamic版本为3.0。找到本地workspace中的当前项目,打开org.eclipse.wst.common.project.facet.core.xml,修改如下图。
(10)直接部署,访问默认index.jsp