初学spring,发现开发中要下载各种jar包很烦,用Maven可以解决烦恼,于是花了两小时才配置好,中间遇到不少问题,现记录下来。
1. 下载Maven
这里我下的是3.0.5,由于我intellij版本是14的,不是很高,一开始下载了3.5的Maven结果工程木有目录
2. 配置Maven的环境变量
;%MAVEN_HOME%\bin;
3. Intellij配置Maven 在ohterSetting也要设置哦 设置两遍
4. Maven conf下Settings.xml文件修改
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<!-- 中央仓库1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!-- 中央仓库2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
5. New Maven webapp项目加载缓慢解决
在maven的VM Options加上-DarchetypeCatalog=internal参数,如下: