一、maven的概述
1骨宠、什么是maven
??maven是一個(gè)項(xiàng)目管理工具,包含項(xiàng)目管理相满,插件以及目標(biāo)的邏輯等层亿。maven為我們提供了一系列的執(zhí)行流程:
2、maven的下載安裝
maven的官方網(wǎng)址:http://maven.apache.org/
maven的歷史版本下載:https://archive.apache.org/dist/maven/maven-3/
注意:maven是一個(gè)使用java寫(xiě)的軟件立美,所以必須依賴java環(huán)境匿又。maven下載出來(lái)進(jìn)行解壓就可以使用。
解壓之后的文件夾目錄:
- Bin:存放二進(jìn)制執(zhí)行腳本文件
- Boot:類(lèi)加載器建蹄,加載我們的maven進(jìn)行啟動(dòng)
- Conf:配置文件所在的路徑
- Lib:maven必須依賴的一些jar包
3碌更、maven的配置
??maven的配置有兩步:配置環(huán)境變量和修改配置文件
??在maven的解壓文件夾中,conf目錄下有一個(gè)settings.xml文件洞慎,我們需要在這個(gè)文件中進(jìn)行配置痛单,大家可以直接復(fù)制下面的內(nèi)容到文件中:
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
| This is the configuration file for Maven. It can be specified at two levels:
|
| 1. User Level. This settings.xml file provides configuration for a single user,
| and is normally provided in ${user.home}/.m2/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -s /path/to/user/settings.xml
|
| 2. Global Level. This settings.xml file provides configuration for all Maven
| users on a machine (assuming they're all using the same Maven
| installation). It's normally provided in
| ${maven.home}/conf/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -gs /path/to/global/settings.xml
|
| The sections in this sample file are intended to give you a running start at
| getting the most out of your Maven installation. Where appropriate, the default
| values (values used when the setting is not specified) are provided.
|
|-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<!-- 這里的路徑是本地倉(cāng)庫(kù)的路徑 -->
<localRepository>F:\java\jar</localRepository>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<!-- 這里的URL是阿里云倉(cāng)庫(kù)的地址 -->
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
</profiles>
</settings>
4、maven的常用命令
- mvn clean:清理target目錄劲腿,這個(gè)目錄包含編譯的結(jié)果(class文件)
- mvn test:運(yùn)行測(cè)試代碼
- mvn compile:編譯src/main/java下面的java代碼旭绒,然后把編譯結(jié)果放到target目錄中
- mvn package:對(duì)項(xiàng)目進(jìn)行打包,包中的內(nèi)容沒(méi)有src/test/java下面的java測(cè)試代碼
5焦人、利用maven工具創(chuàng)建出來(lái)的java項(xiàng)目的目錄結(jié)構(gòu)
simple
??src
????main
??????java:這個(gè)目錄存放主要的java代碼
??????resources:存放配置文件挥吵,這些配置文件只能被src/main/java中的代碼使用
????test
??????java:這個(gè)目錄存放測(cè)試的java代碼
??????resources:存放配置文件,這些配置文件只能被src/test/java中的代碼使用
??pom.xml:配置當(dāng)前項(xiàng)目的坐標(biāo)花椭、jar包(依賴)的坐標(biāo)忽匈、maven的一些插件
??target:編譯、測(cè)試矿辽、打包等操作的結(jié)果存放的地方
??利用maven工具創(chuàng)建出來(lái)的web項(xiàng)目的目錄結(jié)構(gòu)脉幢,絕大部分和maven的java項(xiàng)目結(jié)構(gòu)一樣,只不過(guò)多了一個(gè)webapp目錄嗦锐。
二嫌松、maven與eclipse的集成
第一步:驗(yàn)證eclipse是否安裝有maven的插件
??我們需要打開(kāi)eclipse的window選項(xiàng)中的preferences,搜索maven奕污,如果存在maven選項(xiàng)萎羔,就證明已經(jīng)安裝好maven插件了;如果沒(méi)有maven插件碳默,證明沒(méi)有安裝好maven插件贾陷,需要手動(dòng)安裝
第二步:安裝eclipse的maven插件
??下載maven插件缘眶,鏈接: https://pan.baidu.com/s/1Bu4yRrMyRxMHwF5ukZh6Mw 密碼: 9k5b,將連個(gè)文件夾放入eclipse的安裝目錄下髓废,如果提示文件夾已經(jīng)存在巷懈,直接合并就可以了,然后重啟eclipse慌洪,重復(fù)第一步檢查maven插件是否安裝成功顶燕。
第三步:配置maven
??首先配置maven的安裝路徑
??然后配置maven的settings.xml的文件路徑
三、在eclipse中創(chuàng)建maven項(xiàng)目
1冈爹、創(chuàng)建java工程
注意:如果本地倉(cāng)庫(kù)中沒(méi)有這個(gè)骨架就會(huì)聯(lián)網(wǎng)到阿里云倉(cāng)庫(kù)中進(jìn)行下載涌攻,一定要聯(lián)網(wǎng)。
2频伤、創(chuàng)建web工程
??我們創(chuàng)建完成后恳谎,會(huì)發(fā)現(xiàn)項(xiàng)目中存在一些錯(cuò)誤,這是由于maven的包路徑錯(cuò)誤導(dǎo)致的憋肖,我們需要修改存在的問(wèn)題因痛。
??首先在項(xiàng)目上右鍵選中Properties;
??修改完包路徑后岸更,可能還存在問(wèn)題婚肆,我們?cè)趩?wèn)題窗口中可能會(huì)看到下面的結(jié)果,這說(shuō)明我們還少缺少一個(gè)東西坐慰。
??上面所有的步驟完成后,我們需要更新我們的項(xiàng)目:在項(xiàng)目名上右鍵 --> Mavne --> Update Project
3用僧、跳過(guò)骨架選擇創(chuàng)建java項(xiàng)目
??我們看到上面的方法步驟都過(guò)于麻煩结胀,我們可以選擇使用下面的方法進(jìn)行創(chuàng)建項(xiàng)目。
??注意责循,這時(shí)一定要聯(lián)網(wǎng)糟港,但是如果阿里云的倉(cāng)庫(kù)中也沒(méi)骨架的話,我們需要到中央倉(cāng)庫(kù)中進(jìn)行下載院仿。
4秸抚、跳過(guò)骨架選擇創(chuàng)建web項(xiàng)目
??我們創(chuàng)建好項(xiàng)目后,會(huì)發(fā)現(xiàn)又報(bào)錯(cuò)了歹垫,查看問(wèn)題發(fā)現(xiàn)剥汤,我們web項(xiàng)目中沒(méi)有web.xml文件,我們需要進(jìn)行添加排惨,然后將web.xml中的內(nèi)容添加進(jìn)去吭敢。
web.xml文件內(nèi)容
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>01_helloWorld</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
??然后我們web項(xiàng)目就創(chuàng)建好了。