非web项目添加web模块

1.首先项目是maven项目,创建过程见:Idea项目系列--创建maven工程_开发工具_feiying0canglang的博客

2.添加webapp路径(创建web模块)

File=> Project Structure=> Project Settings=> Modules=> 中间上边“+”号=> 选择“web”

Idea项目--创建web项目_maven

 点击Apply或者OK后效果如下(生成了web路径及下边的文件)

Idea项目--创建web项目_web项目_02

3.设置Artifacts

 File=> Project Structure=> Project Settings=> Artifacts=> 中间“+”号=> Web Applications:Exploded=> From Modules=>

        选择默认的=> Apply

从0创建web项目