一、新建springboot项目时
1. 经常请求超时解决
把Custom的地址填上:https://start.aliyun.com/
(忘记在哪篇博客里看到的)
二、springboot项目里
建springboot项目时,发现pom.xml一片报红,首先检查如下配置:
1. Maven安装、settings.xml
①添加阿里镜像
<mirror>
<id>aliyun</id>
<mirrorOf>central</mirrorOf>
<name>aliyun Maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
②注意你的repository文件夹的位置
2. IDEA里 settings -> Maven的相关设置
看看你后面三个地址所写的位置是否正确
此时解决pom报红
(jar包下载不了)
https://blog.csdn.net/weixin_41450959/article/details/106109392
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true
发现右边Maven栏下的plugins报红
(plugins报红)https://blog.csdn.net/weixin_41771097/article/details/104508718