IDEA使用maven创建javaWeb项目

IDEA使用maven创建javaWeb项目

IDEA使用maven创建javaWeb项目_第1张图片

1、Create New Project

IDEA使用maven创建javaWeb项目_第2张图片

选择Maven-> 勾选Create from archetype->选择maven-archetype-webapp

Next

IDEA使用maven创建javaWeb项目_第3张图片

GroupId 填你公司网址倒起来写

ArtifactId 填你项目名称

Next

IDEA使用maven创建javaWeb项目_第4张图片

可以使用IDEA内置的maven,也能使用自己安装的maven

使用默认的直接Next就行

IDEA使用maven创建javaWeb项目_第5张图片

Finish

IDEA使用maven创建javaWeb项目_第6张图片

我们可以发现,项目结构不全,那就自己加进去吧

按下ctrl+shift+alt+s 进入Project Structure

Modules->Sources

对着main右键->New Folder

IDEA使用maven创建javaWeb项目_第7张图片

建几个文件夹 java  resources  target  test

IDEA使用maven创建javaWeb项目_第8张图片

对”java“文件夹右键->Sources

对”resources“文件夹右键->Resources

等等

IDEA使用maven创建javaWeb项目_第9张图片

ok,项目建好了

 

需要打成war包时在下方Terminal输入 mvn install

IDEA使用maven创建javaWeb项目_第10张图片

出现BUILD SUCCESS

IDEA使用maven创建javaWeb项目_第11张图片

war包就有了

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