本文记录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
将刚刚的配置载入即可