NiceLeeのBlog 用爱发电 bilibili~

SpringBoot 踩坑记录(一)- maven 国内镜像

2018-11-08
nIceLee

阅读:


本文记录SpringBoot学习中遇到的问题。
从官网上下载导入了helloWorld的demo,结果在SpringToolSuitez中打开,一直报错,maven update也没法解决。 最后更换了国内的阿里云镜像,成功解决。

配置settings

配置以下setting.xml即可,如果没有其它特殊需要配的,可以自己新建一个配置;

<?xml version="1.0" encoding="UTF-8"?>
<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">
	<mirrors>
		<mirror>
		    <id>alimaven</id>
		    <name>aliyun maven</name>
		    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
		    <mirrorOf>central</mirrorOf>        
		</mirror>
		<mirror>    
			<id>ibiblio</id>    
			<mirrorOf>central</mirrorOf>    
			<name>Human Readable Name for this Mirror.</name>    
			<url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>    
		</mirror>  
	</mirrors>
</settings>

在Eclipse中设置

我们打开eclipse 然后windows-Preferences

然后Maven - User Settings

将刚刚的配置载入即可


内容
隐藏