使用Intellij idea搭建maven java web项目

时间:2022-02-24 09:55:18

网上搭建项目的教程很多了,就不详解基本顺序了,首先搭建idea所需要的环境,jdk,maven等。随后在搭建的时候记得在第三步的时候加上archetypeCatalog=internal,其中关于创建项目时不理解groupId和artifactId 概念,
groupId :the unique identifier of the organization or group that created the project
artifactId :unique base name of the primary artifact being generated by this project
GroupID 是项目组织唯一的标识符,实际对应JAVA的包的结构,是main目录里java的目录结构。
ArtifactID是项目的唯一的标识符,实际对应项目的名称,就是项目根目录的名称。
详情

关于project structure中Artifacts中war包项目和explorer包项目没生成数来的,maven刷新一下就有了。