关于IDEA新建SpringBoot项目加载很慢或下载失败以及插件下载失败的解决办法

IDEA新建SpringBoot项目及安装插件常见问题

最近在学习java的SpringBoot框架,但是万事开头难,新建SpringBoot项目就出现了问题,不是SpringBoot模拟加载很慢就是模板下载失败,一直以为是校园网的原因。懂的都懂,哈哈哈,网络是一个原因,其次就是模板下载是国外网站,配置一下镜像文件就可以解决了。

SpringBoot模板或依赖加载下载失败解决办法

我们需要找到idea自带的maven配置settings.xml或者自己配置maven的settings.xml文件

1.idea自带maven的settings.xml在C:\Users\yu.m2\wrapper\dists\apache-maven-3.6.3-bin\1iopthnavndlasol9gbrbg6bf2\apache-maven-3.6.3\conf路径下,配置阿里云镜像源,打开settings.xml加入以下配置更快地下载SpringBoot模板

<mirror>
      <id>alimavenid>
      <name>aliyun mavenname>
      <url>http://maven.aliyun.com/nexus/content/groups/public/url>
      <mirrorOf>centralmirrorOf>        
mirror>

2. 如果你已经新建了SpringBoot项目,可以在项目的pom.xml也配置一下阿里云源关联下载依赖,加入以下代码可以更快地下载依赖

 <repositories>
        <repository>
            <id>publicid>
            <name>aliyun nexusname>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
            <releases>
                <enabled>trueenabled>
            releases>
        repository>
    repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>publicid>
            <name>aliyun nexusname>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
            <releases>
                <enabled>trueenabled>
            releases>
            <snapshots>
                <enabled>falseenabled>
            snapshots>
        pluginRepository>
    pluginRepositories>

IDEA插件下载失败解决办法

在settings中的system settings–> updates–> use secure connection,如下图所示,勾选这个选项,我的idea是2020.2的,没有Use secure connection选项,如果你有的话不要勾选
关于IDEA新建SpringBoot项目加载很慢或下载失败以及插件下载失败的解决办法_第1张图片
以上是我的个人见解,如有不足欢迎大家提出意见

你可能感兴趣的:(SpringBoot,spring,boot)