创建标准的maven-web项目

(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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值