Eclipse 新建maven web项目

1、打开eclipse,New –> other –> Maven Project,直接Next

Eclipse 新建maven web项目

Eclipse 新建maven web项目

2、如下图,不要尝试自己制定Workspace location。Next

Eclipse 新建maven web项目

Eclipse 新建maven web项目

3、如下图,空白处不填。packaging选项,war:web项目;jar:java项目,pom:带有子模块的项目。–>Finish

Eclipse 新建maven web项目

Eclipse 新建maven web项目

4、生成项目目录结构如下:默认是java 1.5,pom.xml报错是因为没有web.xml文件,后面会创建。

Eclipse 新建maven web项目

Eclipse 新建maven web项目

5、项目上右键,properties –> Project Facets,暂时不勾选 Dynamic Web Module。–> Apply –> OK

Eclipse 新建maven web项目

Eclipse 新建maven web项目

6、项目上右键,properties –> Project Facets,勾选 Dynamic Web Module。

Eclipse 新建maven web项目

Eclipse 新建maven web项目

7、要勾选上 Generate web.xml deployment descriptor,否则pom.xml还是报错。–> OK –> Apply –> OK

Eclipse 新建maven web项目

Eclipse 新建maven web项目

8、最终项目目录结构如下:
Eclipse 新建maven web项目