非maven项目添加maven

1.新建pom.xml

        右键项目=> new=> File=> pom.xml

2.把pom.xml加到maven项目

        右键pom.xml=> "Add as Maven Project"

        此时可发现右侧已出现项目名为"Unknown"的maven项目

Idea项目--创建maven工程_xml

3.填充pom.xml内容

    示例:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.example</groupId>
<artifactId>helloworld</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.0.8</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>


</project>

结果​:

Idea项目--创建maven工程_maven_02

将pom.xml从maven中移除

右键pom.xml=> Maven=> Remove Projects

此时,pom.xml不发挥作用了,侧边栏的maven窗口也消失。

从0创建maven项目

1.创建空maven工程

File=> new=> Project=> Maven=> Next(不选择archtype)=>输入GroupId、ArtifactId=> 输入Idea工程名及路径=> Finish

创建结束后的结构

Idea项目--创建maven工程_maven_03

说明:

此处java和resources路径已经被标记为了源文件路径和资源路径,若没被标记,标记方法如下:

java:

        法1:右键java路径=> Mark as Sources Root

        法2:File=> Project Structure=> Project Settings=> Modules=> 中间选择目录路径=> 右侧“Sources”=> “Mark as”有

                        ​Sources​, Tests, Resources, Test Resouces, Excluded

resouces:

        和java方法一致

2.添加需要的模块

如果项目中需要web,一种方法是创建maven工程时选择带有“webapp”的archtype,本处没有用archtype,需手动建立web路径。

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

结果如下:

Idea项目--创建maven工程_maven项目_04

3.接下来的详细操作